/* Reset e Estilos de Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #F1F5F9;
    font-family: 'Inter', sans-serif;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.main-card {
    display: flex;
    width: 760px; 
    height: 460px;
    background: #FFFFFF;
    border-radius: 28px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

/* --- BANNER ESQUERDO --- */
.banner {
    width: 45%;
    background-color: #7C3AED;
    background-image: 
        radial-gradient(circle at 70% 30%, rgba(217, 70, 239, 0.55) 0%, transparent 55%),
        linear-gradient(135deg, #6D28D9 0%, #9333EA 50%, #7C3AED 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    padding: 30px; 
    position: relative;
}

.banner-content {
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 2;
}

.logo-box {
    background: linear-gradient(180deg, #FFD33D 0%, #F59E0B 100%);
    width: 75px; 
    height: 75px; 
    border-radius: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    box-shadow: 0 10px 25px rgba(245, 158, 11, 0.3);
    transition: transform 0.3s ease;
    cursor: pointer;
}

.logo-box:hover {
    transform: scale(1.08);
}

.music-icon { 
    font-size: 40px; 
    color: white;
    font-weight: bold;
}

.banner h1 { 
    font-size: 18px; 
    font-weight: 500; 
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.subtitle { 
    font-size: 13px; 
    opacity: 0.95; 
    font-weight: 400; 
    margin-bottom: 25px;
}

.gold-divider {
    width: 110px; 
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
    margin: 15px 0 25px 0;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.center-dot {
    width: 7px; 
    height: 7px;
    background: #FFD33D;
    border-radius: 50%;
    position: absolute;
    box-shadow: 0 0 8px rgba(255, 211, 61, 0.8);
}

.features-list { 
    list-style: none; 
    text-align: left;
    display: inline-block;
}

.features-list li {
    font-size: 12px; 
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    opacity: 0.95;
    transition: transform 0.2s ease;
}

.features-list li:hover {
    transform: translateX(5px);
}

.check-circle {
    background: rgba(255, 255, 255, 0.15);
    width: 18px; 
    height: 18px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 9px;
    margin-right: 10px;
}

/* --- FORMULÁRIO DIREITO --- */
.form-container {
    width: 55%;
    padding: 45px 65px; 
    display: flex;
    flex-direction: column;
}

h2 { color: #1E293B; font-size: 19px; font-weight: 600; margin-bottom: 6px; } 
header p { color: #64748B; font-size: 12px; margin-bottom: 30px; } 

.input-group { margin-bottom: 18px; }
.input-group label { display: block; font-size: 12px; color: #1E293B; font-weight: 600; margin-bottom: 6px; }

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.field-icon {
    position: absolute;
    left: 12px;
    width: 15px; 
    height: 15px;
    color: #94A3B8;
}

input {
    width: 100%;
    padding: 11px 11px 11px 38px; 
    border: 1.5px solid #E2E8F0;
    border-radius: 10px;
    font-size: 12px; 
    background-color: #F8FAFC;
    transition: all 0.2s;
}

input:focus { 
    outline: none; 
    border-color: #8B5CF6; 
    background: #fff;
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 15px 0 25px 0;
    font-size: 11px; 
}

.forgot-link { 
    color: #8B5CF6; 
    text-decoration: none; 
    font-weight: 600;
}

.submit-btn {
    width: 100%;
    padding: 13px; 
    background: linear-gradient(90deg, #6366F1 0%, #4F46E5 100%);
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 13px; 
    cursor: pointer;
    box-shadow: 0 8px 16px rgba(79, 70, 229, 0.2);
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.submit-btn:hover {
    transform: scale(1.02);
    opacity: 0.95;
}

.footer-copyright {
    margin-top: auto;
    text-align: center;
    color: #94A3B8;
    font-size: 10px; 
}

/* --- CHECKBOX CUSTOMIZADO COM CHECK --- */
.custom-checkbox { 
    position: relative; 
    padding-left: 22px; 
    cursor: pointer; 
    color: #64748B; 
}

.custom-checkbox input { 
    position: absolute; 
    opacity: 0; 
    cursor: pointer; 
}

.checkmark {
    position: absolute; 
    top: 0; 
    left: 0; 
    height: 14px; 
    width: 14px; 
    border: 1.5px solid #E2E8F0; 
    border-radius: 4px; 
    background-color: #fff;
    transition: all 0.2s;
}

.custom-checkbox input:checked ~ .checkmark { 
    background-color: #8B5CF6; 
    border-color: #8B5CF6; 
}

/* Criação do símbolo de check (visto) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none; /* Escondido por padrão */
    left: 4.5px;
    top: 1.5px;
    width: 3px;
    height: 7px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

/* Mostra o check apenas quando o input está marcado */
.custom-checkbox input:checked ~ .checkmark:after {
    display: block;
}

.auth-card {
    min-height: 470px;
    height: auto;
}

.auth-brand {
    width: 45%;
    padding: 40px;
    background-color: #7C3AED;
    background-image:
        radial-gradient(circle at 70% 30%, rgba(217, 70, 239, 0.55) 0%, transparent 55%),
        linear-gradient(135deg, #6D28D9 0%, #9333EA 50%, #7C3AED 100%);
    color: #FFFFFF;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.auth-brand h1 {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.auth-brand p {
    font-size: 13px;
    opacity: 0.88;
}

.auth-form-container {
    width: 55%;
    padding: 45px 65px;
    justify-content: center;
}

.auth-form-container header p {
    line-height: 1.55;
    margin-bottom: 24px;
}

.auth-back {
    color: #64748B;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 28px;
}

.auth-field-icon {
    position: absolute;
    left: 12px;
    color: #94A3B8;
    font-size: 16px;
}

.auth-help {
    margin-top: 20px;
    color: #64748B;
    font-size: 11px;
    line-height: 1.5;
    text-align: center;
}

.auth-success,
.auth-error {
    border-radius: 10px;
    padding: 14px;
    font-size: 12px;
}

.auth-success {
    background: #ECFDF5;
    border: 1px solid #A7F3D0;
    color: #166534;
    display: flex;
    gap: 12px;
    line-height: 1.5;
}

.auth-success i {
    font-size: 22px;
}

.auth-success strong,
.auth-success span {
    display: block;
}

.auth-error {
    background: #FEF2F2;
    border: 1px solid #FECACA;
    color: #B91C1C;
    margin-bottom: 16px;
}

.auth-invalid {
    text-align: center;
    color: #475569;
}

.auth-invalid > i {
    color: #EF4444;
    font-size: 42px;
}

.auth-invalid h2 {
    margin-top: 14px;
}

.auth-invalid p {
    font-size: 12px;
    margin: 8px 0 24px;
}

.auth-button-link {
    display: block;
    text-decoration: none;
}

@media (max-width: 760px) {
    body {
        height: auto;
        min-height: 100vh;
        padding: 20px;
    }

    .main-card,
    .auth-card {
        width: 100%;
        max-width: 460px;
        height: auto;
        flex-direction: column;
        border-radius: 18px;
    }

    .banner,
    .auth-brand {
        width: 100%;
        min-height: 180px;
    }

    .form-container,
    .auth-form-container {
        width: 100%;
        padding: 32px 28px;
    }
}

.auth-page {
    min-height: 100vh;
    height: auto;
    padding: 24px;
    background:
        radial-gradient(circle at top left, rgba(124, 58, 237, 0.14), transparent 34%),
        linear-gradient(135deg, #F8FAFC 0%, #F1F5F9 100%);
}

.auth-recovery-card {
    width: 760px;
    height: 460px;
    min-height: 0;
    border: 1px solid rgba(226, 232, 240, 0.95);
}

.auth-recovery-brand {
    position: relative;
    overflow: hidden;
    align-items: flex-start;
    text-align: left;
    justify-content: center;
    gap: 8px;
    padding: 34px 34px;
}

.auth-recovery-brand::after {
    content: "";
    position: absolute;
    inset: auto -74px -104px auto;
    width: 220px;
    height: 220px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
}

.auth-recovery-brand .logo-box {
    width: 60px;
    height: 60px;
    border-radius: 18px;
    margin-bottom: 12px;
    cursor: default;
}

.auth-brand-kicker {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    opacity: 0.82;
}

.auth-recovery-brand h1 {
    font-size: 26px;
    font-weight: 800;
    line-height: 1.1;
    margin: 0;
    letter-spacing: 0;
}

.auth-recovery-brand p {
    max-width: 270px;
    font-size: 13px;
    line-height: 1.5;
    opacity: 0.9;
}

.auth-brand-panel {
    width: 100%;
    margin-top: 20px;
    padding: 14px 15px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.12);
    display: flex;
    gap: 12px;
    align-items: flex-start;
    backdrop-filter: blur(8px);
}

.auth-brand-panel i {
    font-size: 22px;
    color: #FDE68A;
}

.auth-brand-panel strong,
.auth-brand-panel span {
    display: block;
}

.auth-brand-panel strong {
    font-size: 13px;
    margin-bottom: 4px;
}

.auth-brand-panel span {
    font-size: 12px;
    line-height: 1.4;
    opacity: 0.86;
}

.auth-recovery-form {
    justify-content: center;
    padding: 34px 48px;
}

.login-modern-card {
    height: auto;
}

.login-modern-brand {
    width: 45%;
    justify-content: center;
    padding: 40px;
}

.login-brand-content {
    align-items: flex-start;
    text-align: left;
}

.login-modern-brand .logo-box {
    width: 62px;
    height: 62px;
    border-radius: 18px;
    margin-bottom: 18px;
    cursor: default;
}

.login-modern-brand h1 {
    font-size: 28px;
    font-weight: 800;
    line-height: 1.1;
    margin: 0;
    letter-spacing: 0;
}

.login-modern-brand .subtitle {
    max-width: 300px;
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.9;
}

.login-feature-panel {
    margin-top: 28px;
}

.login-features-list {
    width: 100%;
    margin-top: 22px;
    display: grid;
    gap: 10px;
}

.login-features-list li {
    margin: 0;
    gap: 9px;
    font-size: 12px;
    line-height: 1.4;
}

.login-features-list i {
    color: #FDE68A;
    font-size: 16px;
    flex: 0 0 auto;
}

.login-modern-form {
    min-height: 540px;
}

.login-form-header {
    margin-bottom: 22px;
}

.password-wrapper input {
    padding-right: 44px;
}

.password-toggle {
    position: absolute;
    right: 10px;
    width: 30px;
    height: 30px;
    border: 0;
    border-radius: 8px;
    background: transparent;
    color: #64748B;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
}

.password-toggle:hover {
    background: #F1F5F9;
    color: #6D28D9;
}

.password-toggle i,
.submit-btn i {
    font-size: 16px;
}

.submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.login-page {
    padding: 24px;
}

.login-card {
    width: 760px;
    height: 460px;
    min-height: 0;
}

.login-banner {
    overflow: hidden;
}

.login-banner::after {
    content: "";
    position: absolute;
    right: -82px;
    bottom: -104px;
    width: 220px;
    height: 220px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
}

.login-kicker {
    display: block;
    color: #FFFFFF;
    margin-bottom: 10px;
}

.login-banner .logo-box {
    width: 62px;
    height: 62px;
    border-radius: 18px;
    margin-bottom: 20px;
    cursor: default;
}

.login-banner .subtitle {
    max-width: 280px;
    line-height: 1.45;
}

.login-feature-list {
    width: auto;
    margin-top: 0;
    display: inline-block;
}

.login-feature-list li {
    gap: 10px;
    margin-bottom: 12px;
    font-size: 12px;
}

.login-feature-list i {
    color: #FDE68A;
    font-size: 16px;
    flex: 0 0 auto;
}

.login-form-container {
    width: 55%;
    padding: 45px 65px;
}

.login-form-container h3 {
    color: #1E293B;
    font-size: 19px;
    font-weight: 400;
}

.auth-form-header {
    margin-bottom: 18px;
}

.auth-form-header h2 {
    font-size: 23px;
    font-weight: 800;
    letter-spacing: 0;
    margin: 9px 0 7px;
}

.auth-form-header p {
    font-size: 12px;
    line-height: 1.55;
    margin: 0;
}

.auth-mini-label {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 6px 10px;
    border-radius: 999px;
    background: #F3E8FF;
    color: #6D28D9;
    font-size: 11px;
    font-weight: 800;
}

.auth-mini-label i {
    font-size: 15px;
}

.auth-stacked-form {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.auth-message-card {
    align-items: flex-start;
    margin-bottom: 18px;
}

.auth-secondary-action {
    margin-top: 14px;
    text-align: center;
}

.auth-help-box {
    margin-top: 14px;
    padding: 12px 14px;
    border-radius: 14px;
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
    display: flex;
    gap: 10px;
    color: #64748B;
}

.auth-help-box i {
    color: #7C3AED;
    font-size: 18px;
    flex: 0 0 auto;
}

.auth-help-box p {
    margin: 0;
    font-size: 11px;
    line-height: 1.5;
}

.auth-password-rules {
    display: grid;
    gap: 6px;
    margin: 0 0 14px;
    padding: 11px 12px;
    border-radius: 14px;
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
}

.auth-password-rules span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #475569;
    font-size: 11px;
}

.auth-password-rules i {
    color: #16A34A;
    font-size: 16px;
}

.auth-invalid-card {
    width: 100%;
    padding: 24px 22px;
    border-radius: 18px;
    background: #FFFBEB;
    border: 1px solid #FDE68A;
}

.auth-recovery-form .auth-back {
    margin-bottom: 18px;
}

.auth-recovery-form .input-group {
    margin-bottom: 15px;
}

.auth-recovery-form .submit-btn {
    padding: 12px;
}

.auth-invalid-card .auth-button-link {
    margin: 20px 0 14px;
}

.auth-text-link {
    display: inline-flex;
    color: #7C3AED;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
}

@media (max-width: 760px) {
    .auth-page {
        padding: 18px;
        align-items: flex-start;
    }

    .auth-recovery-brand {
        align-items: center;
        text-align: center;
        min-height: auto;
        padding: 32px 28px;
    }

    .auth-recovery-brand p {
        max-width: none;
    }

    .auth-brand-panel {
        margin-top: 16px;
    }

    .auth-recovery-form {
        padding: 34px 26px;
    }

    .login-brand-content {
        align-items: center;
        text-align: center;
    }

    .login-features-list {
        text-align: left;
    }
}
/* Telas de acesso: login, recuperação e nova senha */
.auth-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 28px;
    background:
        radial-gradient(circle at 10% 18%, rgba(139, 92, 246, 0.12), transparent 28%),
        linear-gradient(135deg, #F8FAFC 0%, #EEF2F7 100%);
}

.login-page .login-card,
.recovery-page .auth-card,
.new-password-page .auth-card {
    width: min(760px, calc(100vw - 56px));
    height: 460px;
    min-height: 460px;
    display: grid;
    grid-template-columns: 1fr 1.12fr;
    overflow: hidden;
    border-radius: 22px;
    background: #FFFFFF;
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.13);
}

.login-banner,
.auth-banner {
    width: auto;
    min-height: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 42px 34px;
    background-color: #7C3AED;
    background-image:
        radial-gradient(circle at 70% 30%, rgba(217, 70, 239, 0.34) 0%, transparent 58%),
        linear-gradient(135deg, #6D28D9 0%, #9333EA 52%, #7C3AED 100%);
    position: relative;
    overflow: hidden;
}

.login-banner::after,
.auth-banner::after {
    content: '';
    position: absolute;
    width: 230px;
    height: 230px;
    right: -94px;
    bottom: -90px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.10);
}

.banner-content,
.auth-brand-content {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 300px;
    color: #FFFFFF;
}

.login-banner .banner-content {
    text-align: center;
}

.logo-box,
.auth-brand-logo {
    width: 58px;
    height: 58px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #FACC15, #F59E0B);
    box-shadow: 0 16px 35px rgba(245, 158, 11, 0.28);
}

.logo-box i,
.auth-brand-logo i {
    font-size: 34px;
    color: #FFFFFF;
}

.auth-brand-kicker,
.login-kicker {
    display: block;
    margin-bottom: 10px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.login-banner .subtitle {
    max-width: 270px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.94);
    font-size: 14px;
    line-height: 1.5;
    font-weight: 400;
}

.gold-divider {
    width: 80px;
    height: 1px;
    margin: 36px auto 26px;
    background: rgba(255, 255, 255, 0.22);
    position: relative;
}

.center-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #FACC15;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.login-feature-list {
    width: max-content;
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
    list-style: none;
    text-align: left;
}

.login-feature-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    color: rgba(255, 255, 255, 0.95);
    font-size: 13px;
    font-weight: 400;
    line-height: 1.25;
}

.login-feature-list i {
    flex: 0 0 auto;
    font-size: 16px;
    color: #FDE68A;
}

.login-form-container,
.auth-form-container {
    width: auto;
    min-height: 0;
    background: #FFFFFF;
}

.login-form-container {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 42px 65px 58px;
}

.login-form-container header {
    margin-bottom: 24px;
}

.login-form-container header h3 {
    margin: 0 0 8px;
    color: #111827;
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 0;
}

.login-form-container header p {
    margin: 0;
    color: #64748B;
    font-size: 13px;
    line-height: 1.45;
}

.login-form-container .erro-login {
    width: 100%;
    margin: 0 0 16px;
    padding: 11px 14px;
    border-radius: 9px;
    font-size: 14px;
    line-height: 1.25;
}

.login-form-container form {
    margin: 0;
}

.input-group {
    margin-bottom: 17px;
}

.input-group label {
    display: block;
    margin-bottom: 7px;
    color: #1F2937;
    font-size: 12px;
    font-weight: 800;
}

.input-wrapper {
    min-height: 38px;
    border-radius: 10px;
}

.input-wrapper input {
    height: 38px;
    font-size: 13px;
}

.form-options {
    margin: 15px 0 25px;
}

.submit-btn {
    min-height: 42px;
    border-radius: 10px;
}

.login-form-container .footer-copyright {
    position: absolute;
    left: 65px;
    right: 65px;
    bottom: 25px;
    text-align: center;
}

.login-form-container .footer-copyright p {
    margin: 0;
    color: #9CA3AF;
    font-size: 11px;
    line-height: 1.2;
}

.auth-brand-content {
    text-align: left;
}

.auth-brand-content h1 {
    margin: 0 0 18px;
    color: #FFFFFF;
    font-size: 27px;
    font-weight: 800;
    line-height: 1.12;
}

.auth-brand-content > p {
    margin: 0;
    color: rgba(255, 255, 255, 0.94);
    font-size: 14px;
    font-weight: 600;
    line-height: 1.55;
}

.auth-brand-panel {
    margin-top: 34px;
    padding: 18px;
    display: flex;
    gap: 14px;
    align-items: flex-start;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.10);
}

.auth-brand-panel i {
    color: #FDE68A;
    font-size: 22px;
}

.auth-brand-panel strong {
    display: block;
    margin-bottom: 5px;
    color: #FFFFFF;
    font-size: 14px;
}

.auth-brand-panel p {
    margin: 0;
    color: rgba(255, 255, 255, 0.90);
    font-size: 12px;
    line-height: 1.45;
}

.auth-recovery-form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 34px 48px;
}

.auth-top-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    width: 100%;
    margin-bottom: 22px;
}

.auth-back {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin: 0;
    color: #64748B;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
}

.auth-back:hover {
    color: #6D28D9;
}

.auth-mini-label {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 7px 12px;
    border-radius: 999px;
    background: #F3E8FF;
    color: #7C3AED;
    font-size: 12px;
    font-weight: 800;
    line-height: 1;
}

.auth-form-header {
    margin-bottom: 22px;
}

.auth-form-header h2 {
    margin: 0 0 9px;
    color: #111827;
    font-size: 25px;
    font-weight: 800;
    line-height: 1.15;
}

.auth-form-header p {
    margin: 0;
    max-width: 320px;
    color: #64748B;
    font-size: 13px;
    line-height: 1.55;
}

.auth-recovery-form .input-group {
    margin-bottom: 17px;
}

.auth-recovery-form .submit-btn {
    margin-top: 2px;
}

.auth-help-box,
.password-rules {
    margin-top: 16px;
    padding: 14px 16px;
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    background: #F8FAFC;
}

.auth-help-box {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.auth-help-box i {
    color: #7C3AED;
    font-size: 18px;
}

.auth-help-box p {
    margin: 0;
    color: #64748B;
    font-size: 12px;
    line-height: 1.45;
}

.new-password-page .auth-top-row {
    margin-bottom: 18px;
}

.new-password-page .auth-form-header {
    margin-bottom: 18px;
}

.new-password-page .auth-recovery-form .input-group {
    margin-bottom: 13px;
}

.new-password-page .password-rules {
    margin-top: 10px;
}

.new-password-page .submit-btn {
    margin-top: 12px;
}

@media (max-width: 820px) {
    .auth-page {
        padding: 18px;
        align-items: flex-start;
    }

    .login-page .login-card,
    .recovery-page .auth-card,
    .new-password-page .auth-card {
        width: min(430px, calc(100vw - 36px));
        height: auto;
        min-height: 0;
        grid-template-columns: 1fr;
    }

    .login-banner,
    .auth-banner {
        padding: 30px 26px;
    }

    .login-form-container,
    .auth-recovery-form {
        padding: 30px 28px 34px;
    }

    .login-form-container .footer-copyright {
        position: static;
        margin-top: 26px;
    }
}
/* Ajuste final somente para recuperação e nova senha */
.recovery-page .auth-recovery-card,
.new-password-page .auth-recovery-card {
    display: grid;
    grid-template-columns: 340px 420px;
    width: 760px;
    height: 460px;
    min-height: 460px;
}

.recovery-page .auth-brand,
.new-password-page .auth-brand {
    width: auto;
    min-width: 0;
    height: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 38px 34px;
    gap: 0;
}

.recovery-page .auth-brand .logo-box,
.new-password-page .auth-brand .logo-box {
    flex: 0 0 auto;
    width: 58px;
    height: 58px;
    margin: 0 0 22px;
}

.recovery-page .auth-brand h1,
.new-password-page .auth-brand h1 {
    max-width: 250px;
    margin: 0 0 16px;
    font-size: 27px;
    line-height: 1.12;
}

.recovery-page .auth-brand p,
.new-password-page .auth-brand p {
    max-width: 255px;
    margin: 0;
    font-size: 14px;
    line-height: 1.48;
}

.recovery-page .auth-brand-panel,
.new-password-page .auth-brand-panel {
    width: 100%;
    max-width: 272px;
    box-sizing: border-box;
    margin-top: 34px;
    padding: 17px 18px;
}

.recovery-page .auth-form-container,
.new-password-page .auth-form-container {
    width: auto;
    min-width: 0;
    height: 100%;
    box-sizing: border-box;
}

.recovery-page .auth-recovery-form,
.new-password-page .auth-recovery-form {
    padding: 36px 48px;
    justify-content: center;
}

.recovery-page .auth-top-row,
.new-password-page .auth-top-row {
    margin-bottom: 24px;
}

.recovery-page .auth-form-header,
.new-password-page .auth-form-header {
    margin-bottom: 22px;
}

.new-password-page .auth-invalid-card {
    width: 100%;
    max-width: 305px;
    margin: 0 auto;
    box-sizing: border-box;
}

@media (max-width: 820px) {
    .recovery-page .auth-recovery-card,
    .new-password-page .auth-recovery-card {
        width: min(430px, calc(100vw - 36px));
        height: auto;
        min-height: 0;
        grid-template-columns: 1fr;
    }

    .recovery-page .auth-brand,
    .new-password-page .auth-brand,
    .recovery-page .auth-recovery-form,
    .new-password-page .auth-recovery-form {
        height: auto;
        padding: 30px 28px;
    }
}
/* Ajuste fino do checkbox "Lembrar de mim" */
.login-page .custom-checkbox {
    display: inline-flex;
    align-items: center;
    min-height: 16px;
    line-height: 16px;
}

.login-page .custom-checkbox .checkmark {
    top: 50%;
    transform: translateY(-50%);
}

.login-page .checkmark:after {
    left: 4px;
    top: 1px;
}