body{
background:#081428;
font-family:Arial, sans-serif;
display:flex;
justify-content:center;
align-items:center;
height:100vh;
margin:0;
}

.container{
background:white;
padding:30px;
border-radius:10px;
width:90%;
max-width:380px;
text-align:center;
}

h2{
margin-bottom:20px;
color:#081428;
}

input{
width:100%;
padding:10px;
margin-bottom:15px;
border-radius:5px;
border:1px solid #ccc;
}

button{
width:100%;
padding:10px;
background:#081428;
color:white;
border:none;
border-radius:5px;
cursor:pointer;
}

button:hover{
background:#0d2147;
}

a{
text-decoration:none;
color:#081428;
font-size:14px;
display:block;
margin-top:10px;
}

p{
font-size:14px;
}

@media(max-width:600px){
.container{
padding:20px;
}
}