.login_page {
    font-size: 14px;
    width: 100%;
    height: 100%;
    background-color: #141920;
    color: #fff;
    font-family: "Inter", "Helvetica Neue", Helvetica, Lucida Grande, sans-serif;
}

.login_container {
    width: 100%;
    height: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.login_form {
    min-width: 320px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 10%;
    padding: 30px 60px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, .12);
    background-color: #1F242B;
}

.login_form > * {
    margin: calc(2px * 8) 0;
}

.login_logo {
    width: 120px;
    margin-bottom: 20px;
}

.login_redirect {
    transition: 0.4s;
    font-weight: 400;
    background-color: #53575f;
    color: #ffffffde;
    border: solid 1px #707377;
    cursor: pointer;
    width: 100%;
    padding: 10px 0px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-decoration: none;
}

.login_redirect:hover {
    background-color: #2b2f36;
    text-decoration: none;
}

.divided_text {
    text-align: center;
    border-bottom: 1px solid #535358;
    line-height: .1em;
    color: #ffffffbd;
    width: 100%;
}

.divided_span {
    background: #1f242b;
    padding: 0 1.5rem;
}

.email_entry {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.email_label {
    color: #ffffffde;
    margin: 0px 0px 8px;
}

.email_login {
    border: 1px solid #707377 !important;
    border-radius: 8px;
    transition-property: all;
    transition-duration: .2s;
    transition-timing-function: linear;
    transition-delay: 0s;
    display: flex;
    height: 36px;
    color: #ffffffde !important;
    background-color: transparent !important;
    width: 100%;
    padding: 0;
}

.email_login:hover {
    border-color: #4098fc;
}

.login_button, .last_login_method_button {
    background-color: #4098fc;
    color: #141920;
    width: 100%;
    border-radius: 8px;
    opacity: 40%;
    padding: calc(1px * 8) calc(2px * 8);
    margin: calc(2px * 8) 0;
}

.create_account {
    color: #ffffffbd;
}

.login_support {
    transition: 0s;
    color: #4098fc;
    text-decoration: none;
    cursor: pointer;
}

.login_support:hover {
    text-decoration: underline;
    color: #72b3fd !important;
}

.login_footer {
    text-align: center;
    font-size: 10px;
    position: absolute;
    bottom: 20px;
    width: 100%;
    color: #9a9899;
}
