/* === REGISTRO ESTILO WAVEAPP === */
.container-register {
    display: flex;
    height: 100vh;
    overflow: hidden;
    font-family: 'Inter', system-ui, sans-serif;
}

/* Lado esquerdo - Formulário */
.register-left {
    width: 45%;
    background: #ffffff;
    padding: 60px 40px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.register-box {
    width: 100%;
    max-width: 480px;
}

.form-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 24px;
    text-align: center;
}

.input-group {
    margin-bottom: 20px;
}

.input-group input {
    width: 100%;
    padding: 12px 16px;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 1rem;
}

.register-submit {
    background: linear-gradient(to right, #ff4fff, #aa00ff);
    border: none;
    color: #fff;
    font-size: 1.1rem;
    padding: 12px;
    border-radius: 10px;
    width: 100%;
    cursor: pointer;
    margin-top: 16px;
}

.terms-text {
    font-size: 0.85rem;
    text-align: center;
    color: #666;
    margin-top: 20px;
}

.terms-text a {
    color: #5500a1;
    text-decoration: underline;
}

/* Lado direito - Branding */
.register-right {
    width: 55%;
    background: linear-gradient(135deg, #2b0b3a, #5500a1);
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 60px 40px;
    text-align: center;
}

.register-right h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.register-right p {
    font-size: 1.125rem;
    line-height: 1.6;
    opacity: 0.9;
}

.register-right .hashtag {
    color: #ff4fff;
    font-weight: bold;
    font-size: 2rem;
}

/* Social login refinado */
.social-login-make {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 24px;
    width: 100%;
}

.btn-google-make {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 14px 24px;
    border: 1px solid #d9d9d9;
    border-radius: 12px;
    background: #fff;
    font-weight: 600;
    color: #000;
    text-decoration: none;
    font-size: 16px;
    flex: 1;
    height: 52px;
    transition: box-shadow 0.2s ease-in-out;
}

.btn-google-make:hover {
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.1);
}

.btn-google-make svg {
    width: 22px;
    height: 22px;
}

.btn-facebook-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: #1877f2;
    border-radius: 50%;
    transition: box-shadow 0.2s ease-in-out;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.btn-facebook-icon svg {
    width: 26px;
    height: 26px;
    fill: #fff;
}



.btn-facebook-icon:hover {
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.1);
}

/* RESPONSIVIDADE GERAL */
@media (max-width: 991px) {
    .container-register {
        flex-direction: column !important;
        height: auto !important;
    }

    .register-left {
        width: 100% !important;
        padding: 50px 20px !important;
        max-width: 100% !important;
    }

    .register-right {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        height: 0 !important;
        max-height: 0 !important;
        overflow: hidden !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    .social-login-make {
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 12px;
        width: 100%;
    }

    .btn-google-make {
        flex: 1;
        width: auto;
        margin-bottom: 0;
    }

    .btn-facebook-icon {
        margin: 0;
    }
}

@media (max-width: 480px) {
    .register-left {
        padding: 40px 16px !important;
    }

    .input-group input {
        font-size: 15px !important;
        padding: 12px !important;
    }

    .register-submit {
        font-size: 15px !important;
        padding: 12px !important;
    }

    .btn-google-make {
        font-size: 15px !important;
        padding: 12px 18px !important;
        height: 48px;
    }

    .btn-facebook-icon {
        width: 48px;
        height: 48px;
    }

    .btn-facebook-icon svg {
        width: 28px;
        height: 28px;
    }
}

/* CHECKBOX */

.check3d-container {
    margin-top: 20px;
}

.check3d-label {
    display: flex;
    align-items: center;
    font-size: 0.95rem;
    color: #444;
    gap: 10px;
    cursor: pointer;
    user-select: none;
}

/* Estilo do checkbox */
.check3d-input {
    appearance: none;
    width: 20px;
    height: 20px;
    border: 3px solid #000;
    border-radius: 6px;
    background: #fff;
    position: relative;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    flex-shrink: 0;
}

.check3d-input:checked {
    background-color: #00c853; /* Verde vibrante */
    border-color: #00c853;
}

.check3d-input:checked::after {
    content: '✓';
    position: absolute;
    top: 0px;
    left: 4px;
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    line-height: 24px;
}


/* REGISTRO */


/* Nome + Telefone lado a lado */
.container-register .input-row {
    display: flex !important;
    gap: 15px !important;
    margin-bottom: 15px !important;
}
.container-register .input-row .input-half {
    flex: 1 !important;
}
.container-register .input-row .input-half input {
    width: 100% !important;
}

/* Select ocupa a largura toda */
.container-register .input-group select {
    display: block !important;
    width: 100% !important;
    
}

/* Radios em coluna (vertical) */
.container-register .radio-group-vertical {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 2px !important;
    margin-top: 38px !important;
}
.container-register .radio-group-vertical label {
    display: flex !important;
    align-items: center !important;
    gap: 6px !important;
    font-size: 14px !important;
    cursor: pointer !important;
}



/* Título do grupo */
.input-group > label {
    display: block;
    margin-bottom: 10px;   /* espaço entre o título e os radios */
    font-weight: 600;
    font-size: 14px;
}

/* Radios */
.radio-group-vertical {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-left: -92px;
}

.radio-group-vertical label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 14px;
}

.radio-group-vertical input[type="radio"] {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid #444;
    border-radius: 4px;
    display: inline-block;
    position: relative;
    cursor: pointer;
    margin: 0;
}

.radio-group-vertical input[type="radio"]:checked {
    background-color: #6c63ff;
    border-color: #6c63ff;
}

.radio-group-vertical input[type="radio"]:checked::after {
    content: '';
    position: absolute;
    top: 4px;
    left: 4px;
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 2px;
}
