﻿/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #000000;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.login-wrapper {
    background-color: #000000;
    padding: 40px;
    margin: 40px;
    border-radius: 8px;
    box-shadow: 0 0 100px rgba(27, 101, 29, 0.5);
    text-align: center;
    max-width: 400px;
    width: 100%;
}

.login-heading {
    font-size: 2em;
    margin-bottom: 20px;
    color: whitesmoke;
}

.login-form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.login-label {
    font-size: 1.2em;
    margin-bottom: 10px;
    color: whitesmoke;
}

input[type="password"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid whitesmoke;
    border-radius: 4px;
    font-size: 1em;
}

.submit-button {
    background-color: green;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1em;
}

.submit-button:hover {
    background-color: darkgreen;
}

.error-message {
    color: #dc3545;
    margin-top: 10px;
}

.info-message {
    color: green;
    font-size: 1.2rem;
    padding: 10px;
    border-radius: 4px;
    margin-bottom: 20px;
    text-align: center;
}