/* ==========================================
   AUTH PAGES
========================================== */
.auth-pages-background{
    min-height:100vh;
    background:
    radial-gradient(circle at top left,#FFEAEA 0%,transparent 40%),
    radial-gradient(circle at bottom right,#FFE5E5 0%,transparent 40%),
    var(--background);
    overflow:hidden;
}
.auth-page{
    min-height:100vh;
    display:grid;
    grid-template-columns:1fr 520px;
}
.auth-left{
    display:flex;
    flex-direction:column;
    justify-content:center;
    padding:80px;
}
.auth-logo{
    width:120px;
    margin-bottom:35px;
}
.auth-left h1{
    font-size:3.5rem;
    margin-bottom:15px;
}
.auth-subtitle{
    color:var(--text-light);
    font-size:20px;
    margin-bottom:40px;
}
.auth-features{
    display:grid;
    gap:18px;
}
.auth-features div{
    display:flex;
    align-items:center;
    gap:15px;
    background:var(--surface);
    padding:18px;
    border-radius:18px;
    box-shadow:var(--shadow);
}
.auth-features i{
    color:var(--primary);
    font-size:20px;
}
.auth-right{
    display:flex;
    justify-content:center;
    align-items:center;
    padding:30px;
}
.auth-card{
    width:100%;
    background:var(--surface);
    border-radius:28px;
    padding:45px;
    box-shadow:var(--shadow);
}
.auth-card h2{
    margin-bottom:10px;
}
.auth-card>p{
    color:var(--text-light);
    margin-bottom:30px;
}
.auth-options{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-top:-8px;
    margin-bottom:20px;
    font-size:14px;
}
.auth-options label{
    display:flex;
    align-items:center;
    gap:8px;
}
.auth-options input{
    width:auto;
}
.auth-options a{
    color:var(--primary);
}
.toggle-password{
    position:absolute;
    top:50%;
    right:16px;
    transform:translateY(-50%);
    background:none;
    color:#888;
}
.switch-auth{
    margin-top:25px;
    text-align:center;
    color:var(--text-light);
}
.switch-auth a{
    color:var(--primary);
    font-weight:700;
}
.floating-blob{
    position:fixed;
    border-radius:50%;
    filter:blur(80px);
    opacity:.18;
    z-index:-1;
}
.blob-1{
    width:260px;
    height:260px;
    background:#ef4444;
    top:-80px;
    left:-60px;
}
.blob-2{
    width:320px;
    height:320px;
    background:#f97316;
    bottom:-120px;
    right:-100px;
}
.blob-3{
    width:220px;
    height:220px;
    background:#ec4899;
    top:45%;
    left:55%;
}
@media(max-width:900px){
.auth-page{
grid-template-columns:1fr;
}
.auth-left{
display:none;
}
.auth-right{
padding:20px;
}
.auth-card{
padding:30px;
}
}
.password-strength{
    margin-top:-10px;
    margin-bottom:5px;
    font-size:14px;
    font-weight:600;
    min-height:20px;
}
.password-strength.weak{
    color:#EF4444;
}
.password-strength.medium{
    color:#F59E0B;
}
.password-strength.strong{
    color:#22C55E;
}