body {
    background: #f0f0f0;
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}
.login-box {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    width: 300px;
}
.login-box h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #333;
}
.login-box label {
    display: block;
    margin-top: 10px;
    color: #555;
}
.login-box input, .login-box select {
    width: 100%;
    padding: 8px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
}
.login-box input[type="submit"] {
    background: #007bff;
    color: white;
    border: none;
    margin-top: 15px;
    cursor: pointer;
    transition: background 0.3s;
}
.login-box input[type="submit"]:hover {
    background: #0056b3;
}