*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Arial, Helvetica, sans-serif;
}

body{

display:flex;

justify-content:center;

align-items:center;

height:100vh;

background:linear-gradient(135deg,#2563eb,#7dd3fc);

}

.auth-container{

width:100%;

display:flex;

justify-content:center;

}

.auth-box{

background:white;

padding:40px;

width:400px;

border-radius:20px;

box-shadow:0 15px 40px rgba(0,0,0,.15);

text-align:center;

}

.auth-box h1{

color:#2563eb;

margin-bottom:10px;

}

.auth-box h2{

margin-bottom:30px;

}

.auth-box input{

width:100%;

padding:15px;

margin:12px 0;

border:1px solid #ddd;

border-radius:10px;

font-size:16px;

}

.auth-box button{

width:100%;

padding:15px;

margin-top:20px;

border:none;

background:#2563eb;

color:white;

font-size:17px;

border-radius:10px;

cursor:pointer;

transition:.3s;

}

.auth-box button:hover{

background:#1d4ed8;

}

.auth-box p{

margin-top:20px;

}

.auth-box a{

color:#2563eb;

text-decoration:none;

font-weight:bold;

}

.message{

margin-bottom:20px;

color:green;

font-weight:bold;

}