* {
    box-sizing: border-box;
}

html {
    background: #353535;
    color: white;
    width: 100%;
    height: 100%;
    font-family: Arial, Helvetica, sans-serif;
    overflow-y: hidden;
}

/* Messages */

.message-container {
    display: flex;
    justify-content: center;
    width: 100%;
    color: red;
}


/* Login */

.main-login {
    display: flex;
    width: 100%;
    height: 100vh;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.main-login .login-wrapper {
    display: flex;
    width: 100%;
    justify-content: center;
}

.main-login .login-wrapper .img-container {
    width: 30%;
    border: 1px solid white;
    border-bottom-left-radius: 15px;
    border-top-left-radius: 15px;
    overflow: hidden;
    background-color: white;
    background-image: url('/static/img/logo.jpg');
    background-position: top;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: end;
    color: black;
    font-weight: 850;
    font-size: 2.5rem;
}


.main-login .login-wrapper .login-container {
    border: 1px solid white;
    border-top-right-radius: 15px;
    border-bottom-right-radius: 15px;
    padding: 20px;
    width: 40%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.main-login .login-wrapper .login-container .inner-wrapper {
    display: flex;
    flex-direction: column;
    width: 60%;
    margin-bottom: 10px;
}

.main-login .login-wrapper .login-container .user {
    margin-bottom: 30px;
}

.main-login .login-wrapper .login-container .expl {
    font-size: .8rem;
    text-align: center;
}

.main-login .login-wrapper .login-container form {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 10px;
}

.main-login .login-wrapper .login-container button {
    margin: 20px auto;
}

@media screen and (max-width: 1100px) {
    html {
        overflow: auto;
    }

    .main-login {
        justify-content: unset;
        align-items: unset;
    }

    .main-login .login-wrapper {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .main-login .login-wrapper .img-container {
        width: 80%;
        border: 1px solid white;
        border-bottom-left-radius: 0px;
        border-top-left-radius: 0px;
        height: 600px;
        border-top-left-radius: 15px;
        border-top-right-radius: 15px;
    }

    .main-login .login-wrapper .login-container {
        border-top-right-radius: 0px;
        border-bottom-right-radius: 0px;
        width: 80%;
        border-bottom-left-radius: 15px;
        border-bottom-right-radius: 15px;
    }
}

.main-login .reset-password {
    color: white;
    margin-top: 5px;
    font-size: 1rem;
    width: 100%;
    text-align: start;
}


/* RESET PW */

.main-reset-pw {
    display: flex;
    width: 100%;
    height: 100vh;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.main-reset-pw .reset-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 50%;
}

.main-reset-pw .reset-form .form-outer {
    display: flex;
    width: 100%;
    justify-content: space-evenly;
    height: 250px;
}

.main-reset-pw .reset-form .form-outer .logo-container {
    display: flex;
    width: 40%;
    height: auto;
    background-image: url('/static/img/logo.jpg');
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.main-reset-pw .reset-form .form-outer .input-wrapper {
    display: flex;
    flex-direction: column;
    width: 50%;
    align-items: center;
    justify-content: center;
}

.main-reset-pw .reset-form .form-outer .input-wrapper input {
    margin-top: 10px;
    margin-bottom: 50px;
}

.main-reset-pw .text-wrapper {
    width: 50%;
    text-align: center;
    margin-top: 30px;
    font-size: 1rem;
}

.main-reset-pw .reset-form .form-outer .inner-wrapper {
    display: flex;
    flex-direction: column;
    width: 50%;
    align-items: center;
}

.main-reset-pw .reset-form .form-outer .inner-wrapper .input-wrapper {
    width: 100%;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
}

.main-reset-pw .reset-form .form-outer .inner-wrapper .input-wrapper input {
    width: 70%;
}

