body {
    font-family: 'Nunito Sans', sans-serif;
    background-color: #f4f4f4;
    text-align: center;
}

.container {
    width: 40%;
    margin: auto;
    padding: 20px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    text-align: left;
}

h2 {
    text-align: center;
    color: #333;
}

form {
    display: flex;
    flex-direction: column;
}

label {
    width: 40%;
    font-weight: bold;
}

input {
    padding: 8px;
    width: 55%;
    border: 1px solid #ccc;
    border-radius: 4px;
}

button {
    margin-top: 15px;
    padding: 10px 15px;
    border: none;
    background-color: #357ABD;
    color: white;
    border-radius: 6px;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
    display: block;
    width: 100%;
    text-align: center;
    font-weight: bold;
    cursor: pointer;
}

button:hover {
    background: linear-gradient(90deg, #4A90E2, #357ABD);
    box-shadow: 3px 3px 7px rgba(0, 0, 0, 0.15);
}

button:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

.form-group {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
    width: 100%;
}

.input-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Ensures left alignment */
}

.error-message {
    font-size: 0.9em;
    color: red;
    margin-top: 5px;
    display: none;
    text-align: left;
}

.status-message {
    margin-top: 20px;
    padding: 10px;
    text-align: center;
    border-radius: 5px;
    font-weight: bold;
}

.status-message.pass {
    background-color: #d4edda;  /* Light green background */
    color: #155724;  /* Dark green text */
    border: 1px solid #c3e6cb;
}

.status-message.fail {
    background-color: #f8d7da;  /* Light red background */
    color: #721c24;  /* Dark red text */
    border: 1px solid #f5c6cb;
}

header, footer {
    background: linear-gradient(90deg, #4A90E2, #357ABD);
    color: white;
    text-align: center;
    padding: 10px;
}

nav a {
    color: #357ABD;
    transition: color 0.3s ease-in-out;
}

nav a:hover {
    color: #1E4F7B;
    text-decoration: underline;
}

.notices { background-color: #FFF9DB; }
.maintenance { background-color: #E8F5E9; }
.forum { background-color: #E3F2FD; }
