
body{
    height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    font-family:"Segoe UI";
}

.container{
    background:white;
    padding:30px;
    border-radius:15px;
    width:350px;
}

input, select{
    width:100%;
    padding:10px;
    margin-bottom:10px;
    border-radius:8px;
    border:1px solid #ddd;
}

button{
    width:100%;
    padding:10px;
    background:#2235c5;
    color:white;
    border:none;
    border-radius:8px;
}

.link{
    text-align:center;
    margin-top:10px;
}

a{
    color:#2563eb;
    text-decoration:none;
}

.error{color:red; text-align:center;}
.success{color:green; text-align:center;}
