/* Reset some defaults */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body,
html {
    height: 100%;
}

/* Background styling */
.background {
    background: url('/img/background.jpg') no-repeat center center fixed;
    background-size: cover;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

/* Login container */

.login-container {
    padding: 40px;
    width: 100%;
    max-width: 400px;
    text-align: center;
    color: #fff;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.logo {
    width: 100%;
    margin-bottom: 20px;
}

.login-title {
    font-size: 18px;
    letter-spacing: 2px;
    margin-bottom: 20px;
    color: #fff;
}

.login-form .form-group {
    margin-bottom: 15px;
}

.login-form input[type="text"],
.login-form input[type="email"],
.login-form input[type="password"] {
    width: 100%;
    padding: 12px 15px;
    border: none;
    border-radius: 5px;
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 16px;
}

.login-form select[name="department"] {
    width: 100%;
    padding: 12px 15px;
    border: none;
    border-radius: 5px;
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 16px;
}

.login-form select[name="department"] option {
    background-color: #333;
    color: #fff;
}

.login-form input::placeholder {
    color: #ccc;
}

.options {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    margin-bottom: 20px;
    color: #ccc;
}

.options a {
    color: #ff8c42;
    text-decoration: none;
}

.options a:hover {
    text-decoration: underline;
}

.login-btn {
    width: 100%;
    padding: 12px;
    background-color: #ff5722;
    border: none;
    border-radius: 5px;
    color: #fff;
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.login-btn:hover {
    background-color: #e64a19;
}

.login-btn-secondary {
    width: 100%;
    padding: 12px;
    background-color: #ccc;
    border: none;
    border-radius: 5px;
    color: #fff;
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.login-btn-secondary:hover {
    background-color: #eee;
}



.footer {
    padding: 10px;
    color: white;
}