@import url('../fonts.css');

main {
    display: flex;
    width: 100vw;
    height: 100vh;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    color: black !important;
    font-family: Open Sans, sans-serif !important;
    overflow: auto;
}

.content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    width: 50%;
    max-width: 700px;
}

@media only screen and (max-width: 850px) {
    .content {
        height: 80%;
        width: 100%;
    }
}

.logo {
    min-width: 250px;
    padding-bottom: 48px;
}

#login-logo {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.login-form,
#sso-login-button {
    width: 70%;
}

.powered-by-text {
    text-transform: uppercase;
    padding-bottom: 0.5rem;
    letter-spacing: 0.11rem;
    font-size: 1rem;
}

.powered-by-logo {
    width: 20%;
    padding-bottom: 4em;
}

.login-header {
    font-size: 28px;
    line-height: 120%;
    text-align: center;
    letter-spacing: -0.03em;
    padding-bottom: 24px;
}

.label-text {
    color: black;
    font-size: large;
    font-weight: 500;
}

input[type='text'],
input[type='password'] {
    background-color: #f3f3f4;
    border-radius: 4px;
    border: none;
}

input[type='text']:focus,
input[type='password']:focus {
    background-color: #f3f3f4;
    border: 1px solid lightgrey;
}

.password-input-label {
    display: flex;
    direction: row;
    justify-content: space-between;
    align-items: flex-start;
}

.password-input-label a {
    color: black;
}

.btn-black {
    background: #322f30;
    color: white;
    border-radius: 4px;
}

.input-group {
    padding-bottom: 16px;
}

.description {
    font-size: large;
}

.signup {
    text-align: center;
}

.input-group i {
    position: absolute;
    left: 93%;
    top: 25%;
    color: lightgrey;
}

@media only screen and (max-width: 560px) {
    .input-group i {
        left: 90%;
    }
}

.checkboxControl {
    display: flex;
    margin-top: 0.5rem;
    align-items: center;
    font-weight: 300;
}

.checkbox {
    clip: rect(0 0 0 0);
    width: 1px;
    height: 1px;
    overflow: hidden;
    position: absolute;
    clip-path: inset(50%);
    white-space: nowrap;
}

.checkbox:checked ~ .checkboxDisplay {
    background: #000;
}

@media (hover: hover) and (pointer: fine) {
    .checkbox:focus ~ .checkboxDisplay {
        border-color: #000;
    }
}

.checkboxDisplay {
    width: 1.25rem;
    border: 2px solid #000;
    height: 1.25rem;
    display: flex;
    transition: background 0.25s ease-in-out;
    align-items: center;
    flex-shrink: 0;
    margin-right: 1.5rem;
    justify-content: center;
}

.fa-eye:hover,
.fa-eye-slash:hover {
    cursor: pointer;
}

.strike {
    display: block;
    text-align: center;
    overflow: hidden;
    white-space: nowrap;
}

.strike > span {
    position: relative;
    display: inline-block;
    color: #5a5a5a;
}

.strike > span:before,
.strike > span:after {
    content: "";
    position: absolute;
    top: 50%;
    width: 9999px;
    height: 1px;
    background: rgba(0, 0, 0, 0.1);
}

.strike > span:before {
    right: 100%;
    margin-right: 15px;
}

.strike > span:after {
    left: 100%;
    margin-left: 15px;
}

.d-none {
    display: none;
}