body{
margin:0;
font-family:Arial;
background:linear-gradient(135deg,#0f172a,#1e293b);
height:100vh;
display:flex;
justify-content:center;
align-items:center;
}

.login-container{

background:white;
padding:40px;
border-radius:12px;
width:320px;
text-align:center;
box-shadow:0 10px 30px rgba(0,0,0,0.2);

}

.logo-icon{

font-size:50px;
margin-bottom:10px;

}

.logo h1{

margin:0;
color:#1e293b;

}

.logo p{

font-size:14px;
color:#64748b;
margin-bottom:30px;

}

input, select{

width:100%;
padding:12px;
margin-bottom:15px;
border-radius:6px;
border:1px solid #ccc;

}

button{

width:100%;
padding:12px;
background:#2563eb;
border:none;
color:white;
font-weight:bold;
border-radius:6px;
cursor:pointer;

}

button:hover{

background:#1d4ed8;

}

.links{

margin-top:15px;

}

.links a{

font-size:13px;
color:#2563eb;
text-decoration:none;

}