/* Resetting default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-image: url(/sources/images/lg-bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-color: #87b064;
}

.login-container {
    padding: 20px;
    border-radius: 8px;
    width: 350px;
    max-width: 90%;
    text-align: center;
    backdrop-filter: blur(3px); /* Frosted effect with color */
    /* backdrop-filter: blur(3px) brightness(0.5) saturate(90%) hue-rotate(60deg);  */
    /* background-color: rgba(6, 38, 77, 0.654); */
    background-color: rgb(203 255 226 / 65%);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    transition: all 0.2s ease-in-out;
}

.login-container h1 {
    margin-bottom: 20px;
    color: rgb(39 100 36);
}

.login-container p {
    margin: 5px;
    color: rgb(39 100 36);
    text-align: left;
}

button {
    width: 90%;
    padding: 10px;
    border: none;
    border-radius: 5px;
    color: rgb(255, 255, 255);
    cursor: pointer;
    transition: background-color 0.3s ease;
    background-color: rgb(39 100 36);
    font-size: 16px;
    margin: 10px;
}

button:hover {
    background-color: #35a95c;
}

button::after {
    background-color: #0a4b67;
}

.login-form .input-group {
    margin-bottom: 15px;
    text-align: left;
}

.login-form label {
    display: block;
    margin-bottom: 5px;
    color: rgb(39 100 36);
}

.login-form input[type="text"],
.login-form input[type="password"],
.login-form input[type="email"] {
    width: 100%;
    padding: 8px;
    border-radius: 5px;
    border: 1px solid #ccc;
    color: rgb(39 100 36);
    font-family: monospace;
    font-weight: 700;
}

.loading-button {
    padding: 0px;
}