:root {
    --laranja: #FF6A00;
    --cinza: #ecf0f1;
    --azul: #2c3e50;
}

body {
    background-color: #f8f9fa;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.register-container {
    width: 100vw;
    /* margin: 0 auto; */
    padding: 20px;
}

.register-card {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: none;
}

.register-left {
    background: linear-gradient(135deg, var(--azul) 0%, var(--laranja) 100%);
    color: white;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: start;
}

.register-left h2 {
    font-weight: 700;
    margin-bottom: 20px;
}

.register-left p {
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.feature-list i {
    background-color: rgba(255, 255, 255, 0.2);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.register-right {
    padding: 40px;
    background-color: white;
}

.logo {
    text-align: center;
    margin-bottom: 30px;
}

.logo h1 {
    color: var(--azul);
    font-weight: 800;
    font-size: 2.5rem;
}

.logo span {
    color: var(--laranja);
}

.form-control {
    padding: 12px 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
}

.form-control:focus {
    border-color: var(--laranja);
    box-shadow: 0 0 0 0.25rem rgba(255, 106, 0, 0.25);
}

.btn-register {
    background-color: var(--laranja);
    border: none;
    color: white;
    padding: 12px;
    border-radius: 8px;
    font-weight: 600;
    width: 100%;
    transition: all 0.3s;
}

.btn-register:hover {
    background-color: #e55d00;
    transform: translateY(-2px);
}

.divider {
    display: flex;
    align-items: center;
    margin: 25px 0;
}

.divider::before,
.divider::after {
    content: "";
    flex: 1;
    border-bottom: 1px solid #ddd;
}

.divider span {
    padding: 0 15px;
    color: #777;
}

.social-login {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 25px;
}

.social-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s;
}

.social-btn:hover {
    transform: translateY(-3px);
}

.facebook {
    background-color: #3b5998;
}

.google {
    background-color: #dd4b39;
}

.twitter {
    background-color: #1da1f2;
}

.login-link {
    text-align: center;
    margin-top: 20px;
}

.login-link a {
    color: var(--laranja);
    text-decoration: none;
    font-weight: 600;
}

.login-link a:hover {
    text-decoration: underline;
}

@media (max-width: 992px) {
    .register-left {
        padding: 30px;
    }

    .register-right {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .register-left {
        text-align: center;
    }

    .feature-list li {
        justify-content: center;
    }
}