/* AUTH PAGES - Login & Cadastro */
.auth-body{
    margin: 0;
    padding: 0;
    background-color: var(--cor-fundo);
    min-height: 100vh;
    font-family: "Roboto", sans-serif;
}
.auth-container{
    display: flex;
    min-height: 100vh;
}

/* LEFT PANEL */
.auth-left{
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.auth-left::before{
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--cor-fundo, #0a0a0a) 0%, rgba(0,0,0,0.5) 50%, var(--cor-primaria, #e50914) 200%);
    z-index: 1;
}
.auth-left::after{
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, var(--cor-fundo, #0a0a0a) 0%, transparent 30%, transparent 70%, var(--cor-fundo, #0a0a0a) 100%);
    z-index: 1;
}
.auth-left-content{
    position: relative;
    z-index: 2;
    max-width: 380px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}
.auth-logo{
    max-height: 40px;
    margin-bottom: 40px;
}
.auth-left-content h2{
    color: #fff;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 12px;
}
.auth-left-content p{
    color: rgba(255,255,255,0.6);
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 30px;
}
.auth-left-features{
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.auth-feature{
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
}
.auth-feature i{
    color: var(--cor-primaria);
    font-size: 1rem;
    width: 20px;
}

/* RIGHT PANEL */
.auth-right{
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    background: var(--cor-fundo);
}
.auth-form-wrapper{
    width: 100%;
    max-width: 420px;
}
.auth-form-wrapper h3{
    color: #fff;
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 5px;
}
.auth-form-subtitle{
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
    margin-bottom: 25px;
}

/* TABS */
.auth-tabs{
    background: rgba(255,255,255,0.03);
    border-radius: 10px;
    padding: 4px;
}
.auth-tabs .nav-link{
    color: rgba(255,255,255,0.5);
    border: none;
    border-radius: 8px;
    padding: 8px 20px;
    font-size: 0.85rem;
    font-weight: 500;
    transition: 0.3s;
}
.auth-tabs .nav-link:hover{
    color: #fff;
}
.auth-tabs .nav-link.active{
    background: var(--cor-primaria);
    color: #fff;
}

/* FORM FIELDS */
.auth-field{
    margin-bottom: 18px;
}
.auth-field label{
    color: rgba(255,255,255,0.6);
    font-size: 0.8rem;
    font-weight: 500;
    margin-bottom: 6px;
    display: block;
}
.auth-input-group{
    display: flex;
    align-items: center;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 10px;
    padding: 0 14px;
    transition: 0.3s;
}
.auth-input-group:focus-within{
    border-color: var(--cor-primaria);
    background: rgba(255,255,255,0.06);
    box-shadow: 0 0 0 3px rgba(229,9,20,0.1);
}
.auth-input-group i{
    color: rgba(255,255,255,0.3);
    font-size: 0.9rem;
    width: 20px;
    flex-shrink: 0;
}
.auth-input-group input{
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: #fff;
    padding: 12px 10px;
    font-size: 0.9rem;
}
.auth-input-group input::placeholder{
    color: rgba(255,255,255,0.25);
}
.toggle-pass{
    cursor: pointer;
    color: rgba(255,255,255,0.3);
    padding: 5px;
    transition: 0.3s;
}
.toggle-pass:hover{
    color: var(--cor-primaria);
}

/* SUBMIT BUTTON */
.btn-auth-submit{
    width: 100%;
    background: var(--cor-botao);
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 13px;
    font-size: 0.95rem;
    font-weight: 600;
    margin-top: 8px;
    transition: 0.3s;
}
.btn-auth-submit:hover{
    background: var(--cor-primaria);
    filter: brightness(0.85);
    color: #fff;
    transform: translateY(-1px);
}

/* FOOTER LINKS */
.auth-footer-links{
    text-align: center;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.05);
}
.auth-footer-links a{
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
    text-decoration: none;
    transition: 0.3s;
}
.auth-footer-links a:hover{
    color: var(--cor-primaria);
}
.auth-footer-links .divider{
    color: rgba(255,255,255,0.2);
    margin: 0 12px;
}

/* RESPONSIVE */
@media screen and (max-width: 991px){
    .auth-container{
        flex-direction: column;
    }
    .auth-left{
        display: none;
    }
    .auth-right{
        padding: 30px 20px;
        min-height: 100vh;
    }
}
@media screen and (max-width: 480px){
    .auth-form-wrapper{
        max-width: 100%;
    }
    .auth-form-wrapper h3{
        font-size: 1.4rem;
    }
    .auth-tabs .nav-link{
        padding: 8px 14px;
        font-size: 0.8rem;
    }
}
