@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Work+Sans&display=swap');

.login {
    background: #FFE86D;
    width: 100%;
    height: calc(100vh - 100px);
    display: block;
    flex-direction: column;
    overflow-y: scroll;
    scrollbar-width: none;
}

.login .centered {
    margin-left: auto;
    margin-right: auto;
    width: 1300px;
    height: calc(100vh - 100px);
    align-items: center;
    min-height: 700px;
}

.login .login-form {
    width: 860px;
    display: flex;
    flex-direction: column;
    margin: auto;
}

.login .form-heading {
    color: #000000;
    text-align: center;
    font-family: "Bebas Neue", sans-serif;
    font-size: 111px;
    margin-top: 0;
    margin-bottom: 0;
}

.login .form-message {
    color: #F34646;
    text-align: center;
    font-family: "Bebas Neue", sans-serif;
    font-size: 34px;
    font-style: normal;
    font-weight: 400;
    margin-top: -10px;
    margin-bottom: 20px;
}

.login .form-label {
    color: #F34646;
    font-family: "Bebas Neue", sans-serif;
    font-size: 34px;
    line-height: 40px;
    margin-left: 20px;
    margin-top: 34px;
}

.login .form-input {
    background: #FFFFFF;
    height: 66px;
    border: none;
    border-radius: 33px;
    color: #000000;
    font-family: "Work Sans", sans-serif;
    font-size: 30px;
    padding-left: 27px;
    padding-right: 27px;
}

.login .form-input:focus {
    outline: none;
}

.login .form-footer {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-content: center;
    align-items: center;
    margin-top: 60px;
}

.login .remember-label {
    color: #F34646;
    text-align: center;
    font-family: "Bebas Neue", sans-serif;
    font-size: 34px;
    margin-left: 20px;
    height: 100%;
    display: flex;
    justify-content: center;
    text-decoration: underline;
}

.login .remember-checkbox {
    display: none;
}

.login .form-button {
    background: #F34646;
    border: none;
    border-radius: 33px;
    width: 361px;
    height: 66px;
    color: #FFFFFF;
    font-family: "Bebas Neue", sans-serif;
    font-size: 34px;
    cursor: pointer;
}

.login .no-account {
    display: flex;
    align-self: center;
    color: #F34646;
    font-family: "Bebas Neue", sans-serif;
    font-size: 34px;
    margin-top: 60px;
}

.login .no-account-link {
    color: #F34646;
}


@media screen and (max-width: 1340px) {
    .login .centered {
        width: calc(100% - 40px);
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media screen and (max-width: 860px) {
    .login .login-form {
        width: 100%;
    }
}

@media screen and (orientation: portrait) {
    .login .login-form {
        margin-top: 200px;
    }
}