.auth-page{

min-height:100vh;

display:flex;

align-items:center;

justify-content:center;

background:#f7f8fc;

padding:50px 20px;

}

.auth-box{

width:100%;

max-width:420px;

background:#fff;

padding:40px;

border-radius:20px;

box-shadow:0 10px 30px rgba(0,0,0,.08);

}

.auth-box h2{

font-size:32px;

margin-bottom:10px;

text-align:center;

}

.auth-box p{

text-align:center;

margin-bottom:25px;

}

.auth-box form{

display:flex;

flex-direction:column;

gap:20px;

}

.auth-box input{

padding:15px;

border:1px solid #ddd;

border-radius:10px;

font-size:16px;

}

.auth-box button{

padding:15px;

border:none;

background:#6C4DF6;

color:#fff;

font-size:18px;

border-radius:10px;

cursor:pointer;

transition:.3s;

}

.auth-box button:hover{

background:#5639e8;

}

.auth-links{

margin-top:20px;

text-align:center;

}

.auth-links a{

color:#6C4DF6;

text-decoration:none;

font-weight:600;

}

.auth-error{

background:#ffe5e5;

color:#c62828;

padding:12px;

border-radius:8px;

margin-bottom:20px;

text-align:center;

}