@font-face {
    font-family: 'Domine';
    src: url('../static/fonts/Domine/static/Domine-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Licorice';
    src: url('../static/fonts/Licorice/Licorice-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

:root {
    --beige: #faf0e6;
    --light_green: #535732;
    --dark_green: #3E482A;
    --black: #000000;
    --font-text: 'Domine';
    --font-headline: 'Licorice', cursive;
}

html, body {
    font-family: var(--font-text);
    font-size: large;
    font-weight: normal;
    background-color: var(--beige);
    color: var(--black);
}


/* Login */

.login-base-container {
    position: relative;
    max-width: 100vw;
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-background {
    position: absolute;
    width: auto;
    height: 80%;
    z-index: 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.login-container {
    position: relative;
    z-index: 1;
    background: rgba(245, 245, 220, 0.8);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);

}

.form-group {
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.login-base-container label {
    color: var(--light_green);
    text-align: center;
    font-size: large;
    margin-bottom: 2rem;
    font-family: var(--font-text);
    font-size: large;
    font-weight: bold;
}

.login-base-container input[type="password"] {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid var(--light_green);
    border-radius: 4px;
    box-sizing: border-box;
    background-color: var(--beige);
    margin-top: 1rem;
    font-family: var(--font-text);
    font-size: large;
    font-weight: bold;
}

.login-base-container button {
    width: 100%;
    padding: 0.8rem;
    background-color: var(--dark_green);
    color: var(--beige);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    font-family: var(--font-text);
    font-size: large;
    font-weight: bold;
}

.login-base-container button:hover {
    background-color: var(--beige);
    color: var(--dark_green);
}

.error {
    color: var(--light_green);
    text-align: center;
    margin-top: 1rem;
}


/* Responsive */
@media (max-width: 770px) {

    img {
        max-width: 670px;
    }
}

@media (max-width: 480px) {

    img {
        max-width: 280px;
    }
}