body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #eeeeee;
    display: flex;
    flex-direction: column;
    height: 100vh;
}


.header {
    background-color: #171718;
    color: white;
    padding: 20px;
    text-align: center;
}

.logo h1 {
    margin: 0;
}


.main-content {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
}

.login-box {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    width: 100%;
    text-align: center;
}

.login-box h2 {
    font-size: 1.8rem;
    color: #171718;
    margin-bottom: 20px;
}

.login-box form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    text-align: left;
}

.login-box label {
    font-size: 0.95rem;
    color: #333;
}

.login-box input {
    padding: 10px;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
    width: 100%;
}

.login-box button {
    background-color: #171718;
    color: white;
    border: none;
    padding: 10px 15px;
    font-size: 1rem;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

.login-box button:hover {
    background-color: white;
    color: #171718;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
}

.error {
    color: red;
    margin-bottom: 10px;
    font-weight: bold;
}

.extra-links {
    margin-top: 15px;
    font-size: 0.9rem;
}

.extra-links a {
    color: #0d47a1;
    text-decoration: none;
}

.extra-links a:hover {
    text-decoration: underline;
}


.footer {
    background-color: #171718;
    color: white;
    text-align: center;
    padding: 15px;
    font-size: 0.9rem;
}
