/* Set the background image for the login screen */
body.login {
    background: url('https://globe.united.earth/wp-content/uploads/2025/03/night-sky.jpg') no-repeat center center fixed;
    background-size: cover;
}

/* Customize the login form container */
#login {
    background: #000; /* dark gray background for the box */
    padding: 20px;
    border-radius: 5px;
}

/* Customize the form inside the login box */
#loginform {
    background: #000; /* slightly lighter dark gray for the form fields container */
    color: #fff; /* white text */
}

/* Style the input fields */
#loginform input[type="text"],
#loginform input[type="password"] {
    background: #414141; /* adjust as needed */
    color: #d8d8d8;
    border: none;
}
