* {
margin: 0;
padding: 0;
box-sizing: border-box;
}

body {
font-family: 'Segoe UI', sans-serif;
background: linear-gradient(to right, #002244, #004080);
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
}

.login-box {
background: #ffffff;
padding: 40px 30px;
border-radius: 12px;
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
width: 100%;
max-width: 400px;
}

.login-box h2 {
text-align: center;
margin-bottom: 25px;
color: #002244;
}

.login-box label {
display: block;
margin-bottom: 5px;
color: #333;
font-weight: 500;
}

.login-box input, 
.login-box select {
width: 100%;
padding: 12px;
margin-bottom: 20px;
border: 1px solid #ccc;
border-radius: 6px;
font-size: 15px;
}

.login-box button {
width: 100%;
padding: 12px;
background: #002244;
color: #fff;
font-size: 16px;
font-weight: bold;
border: none;
border-radius: 6px;
cursor: pointer;
transition: background 0.3s;
}

.login-box button:hover {
background: #003366;
}

.error {
color: red;
text-align: center;
margin-bottom: 15px;
font-weight: 500;
}

.footer-text {
text-align: center;
font-size: 12px;
color: #888;
margin-top: 15px;
}

