@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@200;400;600;800&family=Lato:wght@100&family=Roboto:wght@100&display=swap');

main {
  background:  url("/static/images/background-placeholder.78d2f7d52197.jpg") 50% 0 repeat fixed;
}

.bigtext-title {
    background-color: #3a3a3a;
    font-size: 1.5rem;
    font-family: "Barlow Condensed";
    font-weight: bold;
}

.form-container {
    display: flex;
    flex-direction: column;
    width: 95%;
    justify-content: center;
    margin: 0.5rem auto 1rem auto;
    box-shadow: 3px 3px 5px 3px rgba(0,0,0,0.3);
    border-radius: 5px;
    background-color: #535353;
    padding-bottom: 0.4rem;
}

.login-input__label {
    display: flex;
    width: 95%;
    margin: 0.2rem auto 0 auto;
    padding: 0.2rem 0;
    font-size: 1.1rem;
    color: white;
    font-family: "Barlow Condensed";
    text-shadow: 1px 1px #353434;
}


.login-field {
    display: flex;
    width: 95%;
    margin: 0.3rem auto;
    padding: 0.2rem 0.5rem;
}

.form-buttons__container {
    display: flex;
    width: 100%;
    justify-content: space-around;
    align-items: center;

}

.form-buttons__container a,
.form-buttons__container button {
    display: flex;
    width: 40%;
    justify-content: center;
    margin: 0.5rem auto;
    padding: 0.3rem 0;
    border-radius: 10px;
    color: #d6d6d6;
    font-size: 1.4rem;
    border: 0;
    box-shadow: 2px 2px 3px 2px rgba(0,0,0,0.3);
    text-shadow: 1px 1px #353434;
}

.form-buttons__container a:hover,
.form-buttons__container a:active,
.form-buttons__container button:hover,
.form-buttons__container button:active {
    text-decoration: none;
    color: white;
}


.back-button {
    background-color: #4b4b4b;
}

.back-button:active,
.back-buttom:hover {
    background-color: #717171
}

.login-button {
    background-color: green;
}

.login-button:active,
.login-button:hover {
    background-color: #029802;    
}

.logged-in__button:hover,
.logged-in__button:active {
    text-decoration: none;
}


.logged-in__button span {
    font-size: 3rem;
    padding: 0.5rem 0;
}

.logged-in__button p {
    font-size: 0.8rem;
    margin: 0;
    padding-bottom: 0.4rem;
}

@media (min-width: 50rem) {
    .form-container {
        width: 60%;
        padding-bottom: 0.6rem;
    }
    
    .bigtext-title {
        background-color: #3a3a3a;
        font-size: 1.8rem;
    }

    .login-input__label {
        font-size: 1.3rem;
    }
    .form-buttons__container a,
    .form-buttons__container button {
        font-size: 1.6rem;
        width: 35%;
    }
}

@media (min-width: 80rem) {
    .bigtext-title {
        font-size: 2.2rem;
    }
    .form-container {
        width: 40%;
        padding-bottom: 0.8rem;
    }
    .login-input__label {
        font-size: 1.5rem;
    }
    .form-buttons__container {
        margin-top: 1rem;
    }

}