*{

margin:0;
padding:0;
box-sizing:border-box;
font-family:Arial,sans-serif;

}

body{

background:#0f3fb9;

display:flex;

justify-content:center;

align-items:center;

min-height:100vh;

padding:20px;

}

.container{

width:100%;
max-width:500px;

background:#fff;

padding:30px;

border-radius:15px;

box-shadow:0 10px 30px rgba(0,0,0,.3);

}

h1{

text-align:center;

color:#1e40af;

margin-bottom:10px;

}

.subtitle{

text-align:center;

margin-bottom:25px;

color:#666;

}

input,
select{

width:100%;

padding:14px;

margin-bottom:15px;

border:1px solid #ccc;

border-radius:8px;

font-size:16px;

}

button{

width:100%;

padding:15px;

border:none;

background:#16a34a;

color:white;

font-size:18px;

font-weight:bold;

border-radius:10px;

cursor:pointer;

}

button:hover{

background:#15803d;

}

#msg{

margin-top:20px;

font-weight:bold;

text-align:center;

}

.login{

margin-top:20px;

text-align:center;

}

.login a{

text-decoration:none;

font-weight:bold;

color:#1e40af;

}