.auth-wrapper{
display:flex;
justify-content:center;
align-items:center;
height:90vh;
background:linear-gradient(135deg,#ffffff,#fff5f5);
}

.auth-card{
background:white;
padding:40px;
width:380px;
border-radius:18px;
box-shadow:0 15px 40px rgba(0,0,0,0.08);
}

.auth-card h2{
text-align:center;
margin-bottom:25px;
color:#b91c1c;
}

.auth-card input{
width:100%;
padding:12px;
margin:10px 0;
border-radius:8px;
border:1px solid #ddd;
outline:none;
}

.auth-card input:focus{
border-color:#dc2626;
}

.error{
background:#fee2e2;
color:#b91c1c;
padding:10px;
border-radius:6px;
margin-bottom:10px;
text-align:center;
}

.success{
background:#dcfce7;
color:#166534;
padding:10px;
border-radius:6px;
margin-bottom:10px;
text-align:center;
}