.auth-container{

height:80vh;
display:flex;
justify-content:center;
align-items:center;
background:#FFC107;

}

.auth-box{

background:white;
padding:40px;
width:350px;
display:flex;
flex-direction:column;
gap:15px;
box-shadow:0px 5px 20px rgba(0,0,0,.2);

}

.auth-box input{

padding:10px;
border:1px solid #ccc;

}

.auth-box button{

background:black;
color:white;
padding:10px;
border:none;
cursor:pointer;

}

/* ===============================
   PREMIUM PASSWORD RESET UI
   =============================== */

.auth-container{
    min-height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
    background:linear-gradient(135deg,#FFC107,#ffe082);
    padding:20px;
}

.auth-box{
    width:100%;
    max-width:420px;
    background:#ffffff;
    padding:40px;
    border-radius:16px;
    box-shadow:0 20px 50px rgba(0,0,0,0.12);
    display:flex;
    flex-direction:column;
    gap:20px;
    animation:fadeIn .4s ease-in-out;
}

.auth-box h2,
.auth-box h3{
    text-align:center;
    font-weight:600;
    margin:0;
}

.auth-box p{
    text-align:center;
    font-size:14px;
    color:#666;
    margin:0;
}

.auth-box input{
    width:100%;
    padding:12px 14px;
    border:1px solid #ddd;
    border-radius:10px;
    font-size:14px;
    transition:all .3s ease;
}

.auth-box input:focus{
    border-color:#FFC107;
    outline:none;
    box-shadow:0 0 0 3px rgba(255,193,7,.2);
}

.auth-box button{
    padding:12px;
    border:none;
    border-radius:10px;
    background:black;
    color:white;
    font-weight:600;
    cursor:pointer;
    transition:all .3s ease;
}

.auth-box button:hover{
    background:#FFC107;
    color:black;
}

.auth-box a{
    text-decoration:none;
    color:black;
    font-weight:500;
}

.auth-box a:hover{
    text-decoration:underline;
}

@keyframes fadeIn{
    from{opacity:0; transform:translateY(8px);}
    to{opacity:1; transform:translateY(0);}
}