/* Center the login box */
.login-container {
    max-width: 400px;
    margin: 50px auto;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 10px;
    background-color: #f9f9f9;
    text-align: center;
    box-shadow: 4px 4px 6px rgba(11, 18, 30, 0.1);
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif
}

/* Style the form fields */
.login-form p {
    margin-bottom: 15px;
    text-align: left;
}

.login-form label {
    font-weight: bold;
    display: block;
}

.login-form input {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;

}

/* Style the submit button */
.login-form button {
    background-color: #26bf38;
    color: rgb(17, 30, 29);
    padding: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
    font-size: 16px;
}

.login-form button:hover {
    background-color: #44cb5f;
}

p a {
    color: #050905;
    text-decoration: none;
    font-weight: bold;
    color: #005d0b;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

p a:hover {
    text-decoration: underline;
}

.auth-links {
    margin-top: 1.5rem;
    text-align: center;
    font-size: 0.95rem;
    color: #555;
}

.auth-links p {
    margin: 0.5rem 0;
}

.auth-links a {
    color: #157756;          /* match your theme color */
    text-decoration: none;
    font-weight: 500;
}

.auth-links a:hover {
    text-decoration: underline;
    color: #0d5a41;
}