﻿body, html {
    background-color: var(--primary-color);
    height: 100%;
    margin: 0;
}
.loginContainer {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
}

.loginBox {
    max-width: 400px;
    width: 100%;
    height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: white;
    border-radius: 3px;
    padding: 10px;
    /*box-shadow: 5px 5px 10px 2px rgba(0, 0, 0, 0.3);*/
    transition: box-shadow 0.75s ease;
}

.loginBoxShadow {
    box-shadow: 10px 10px 15px 5px rgba(0, 0, 0, 0.3);
}

.loginInputContainer {
    width: 70%;
    display: flex; 
    flex-direction: column;
    margin-bottom: 15px;
}

.loginButton {
    width: 100%;
}

.loginError {
    font: var(--medium-font);
    color: var(--error-color);
    font-weight: bold;
}

.loginInput {
    height: 25px;
    padding: 8px;
    font: var(--medium-font);
    border: 1px solid black;
    border-radius: 3px;
}

@media (max-width: 600px) {
    .loginBox {
        max-width: 370px !important;
    }
}