body {
    font-family: proxima-nova, sans-serif;
    /* background-color: var(--grey); */
    color: white;

    min-height: 100vh;
    background-color: #1b2039;
}

span.red {
    color: var(--brick-red);
}

.header {
    display: grid;
    grid-template-areas: "menu logo search";
    grid-template-columns: 22px 1fr 20px;
    padding: 0 16px;
    background-color: var(--dark-grey-1);
    height: 60px;
    align-items: center;
    z-index: 10;
}

.logo-wrapper {
    text-align: center;
    padding: 40px 10px;
}

.header .menu {
    grid-area: menu;
    width: 22px;
    height: 17px;
}

.header .logo {
    grid-area: logo;
    text-align: center;
}
.header .logo img {
    margin-top: 3px;
    width: 100px;
    height: 32px;
}

.header .search {
    grid-area: search;
    width: 20px;
    height: 20px;
}

@media (min-width: 1200px) {
    .header {
        display: block;
        position: absolute;
        background-color: unset;
        padding: 0;
    }

    .header .logo {
        margin: 10px 40px;
        height: 60px;
    }

    .header .menu,
    .header .search {
        display: none;
    }
}

.page-grid {
    max-width: 500px;
    width: 100%;
    margin: auto;
    padding: 60px 15px 0px;
}

.testimonial-blocks {
    display: none;
}

.login-wrapper,
.register-wrapper {
    margin: 35px 20px 10px;
}

@media (min-width: 600px) {
    .page-grid {
        display: grid;
        max-width: 100%;
        grid-template-columns: 500px 1fr; /*700px*/
        padding: 0;
    }

    .logo-wrapper {
        padding: 70px 10px 40px 10px;
    }

    .login-wrapper,
    .register-wrapper {
        margin: 0 auto 10px;
        width: 100%;
        max-width: 500px;
    }

    .testimonial-blocks {
        display: block;
        height: 100vh;
        position: relative;
    }

    .testimonial-blocks > div {
        height: 100%;
        width: 100%;
        opacity: 0;
        position: absolute;
        transition: opacity 1s ease;
        z-index: 2;
    }

    .testimonial-blocks .selector-wrapper {
        opacity: 1;
        height: 22px;
        /* width:100px;*/
        width: 57px;
        position: absolute;
        right: 40px;
        bottom: 56px;
        z-index: 5;
    }

    .testimonial-blocks .block-selector {
        display: grid;
        /* grid-template-columns: 22px 22px 22px; */
        grid-template-columns: repeat(auto-fit, 22px);
        grid-gap: 13px;
        height: 100%;
    }

    .block-selector > div {
        background-position: center top;
        background-repeat: no-repeat;
        background-size: cover;
        border-radius: 40px;
        border: 1px solid var(--light-grey);
        cursor: pointer;
    }

    .block-selector > .active {
        background-image: url("../images/On.png");
    }

    .testimonial-blocks > div.active {
        display: block;
        opacity: 1;
        z-index: 1;
    }

    .testimonial-blocks .performer-photo {
        background-color: var(--dark-grey-2);
        height: 100vh;
        background-position: center top;
        background-repeat: no-repeat;
        background-size: cover;
    }

    .testimonial-blocks .name {
        position: absolute;
        left: 40px;
        bottom: 50px;
        height: 32px;
        font-size: 20px;
        font-weight: 600;
        font-stretch: normal;
        font-style: normal;
        line-height: 1.6;
        letter-spacing: normal;
        color: var(--light-grey);
    }

    .testimonial-blocks .testimonial {
        position: absolute;
        left: 40px;
        bottom: 110px;
        right: 40px;
        font-size: 16px;
        font-weight: normal;
        font-stretch: normal;
        font-style: normal;
        line-height: 1.63;
        letter-spacing: normal;
        color: var(--light-grey);
    }

    .block-1 .performer-photo {
        background-image: url("../images/login_performer-Jared.jpeg");
    }
    .block-2 .performer-photo {
        background-image: url("../images/login_performer-Malcolm.jpeg");
    }
}

.login-form {
    padding: 30px 50px;
    border-radius: 10px;
    background-color: white;
    color: #3a3a3a;
}

.login-form h1 {
    text-align: center;
    font-weight: 100;
    margin-bottom: 15px;
}

.form-header {
    margin-bottom: 40px;
}

.form-header .title {
    font-family: "Teko", sans-serif;
    font-size: var(--fs-lg);
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.43;
    letter-spacing: 1px;
    height: 40px;
}

.form-header .sub-title {
    height: 26px;
    font-size: var(--fs-sm);
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.63;
    letter-spacing: normal;
}

.form-inputs {
    margin-bottom: 40px;
}

.form-inputs .label {
    font-weight: 600;
    font-size: var(--fs-sm);
    font-stretch: normal;
    font-style: normal;
    line-height: 1.75;
    letter-spacing: normal;
    color: #3a3a3a;
}

.form-inputs input {
    width: 100%;
    height: 40px;
    border-radius: 2px;
    background-color: var(--grey);
    font-size: var(--fs-sm);
    line-height: 1.63;
    letter-spacing: normal;
    padding-left: 8px;
    caret-color: var(--light-grey);
    color: #3a3a3a;
    border: none;
    background-color: #ececec;
}

.form-inputs input.error {
    border: 1px solid var(--brick-red);
}

.form-inputs input:focus {
    /* background-color: var(--text-field-white-25); */
    outline-width: 0;
}

.form-inputs .input + .input {
    margin-top: 10px;
}

.form-inputs .forget-password {
    height: 26px;
    font-size: 14px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.86;
    letter-spacing: normal;
    color: var(--light-grey);
    text-align: right;
    cursor: pointer;
}

.form-inputs .forget-password:hover {
    color: var(--default-color);
}

.register-form .form-inputs {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 15px;
}
.form-inputs .input + .input {
    margin-top: 10px;
}
@media (min-width: 600px) {
    .register-form .form-inputs {
        grid-template-columns: 1fr 1fr;
    }

    .register-form .email-input,
    .register-form .password-input {
        grid-column: 1/3;
    }
}

.login-button,
.register-button {
    width: 100%;
    height: 60px;
    /* border-radius: 2px; */
    background-color: var(--default-color);
    font-size: 14px;
    font-weight: 600;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.29;
    letter-spacing: 2px;
    text-align: center;
    color: white;
    cursor: pointer;
}

.error-message {
    color: #ff8080;
    text-align: center;
    visibility: hidden;
}
.error-message.shown {
    visibility: visible;
}

.go-to-register,
.go-to-login {
    margin-top: 20px;
    height: 26px;
    font-size: 16px;
    font-weight: normal;
    font-stretch: normal;
    font-weight: 100;
    line-height: 1.63;
    letter-spacing: normal;
    text-align: center;
    color: var(--light-grey);
}

a.register,
a.login {
    color: #ffffff;
    font-style: bold;
}

.logo-wrapper img {
    width: 100%;
    /* margin: 0 10% 30px; */
}

.btn {
    border: none;
    padding: 0.75em 1em;
}

.login-form .instructions,
.login-form .title {
    text-align: center;
    /* color: #e6e6e6; */
}

.login-form .title {
    font-size: 30px;
    margin-bottom: 0px;
}

.login-form .instructions {
    margin: 4px 0 40px;
    font-size: 15px;
}

.modal {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}

.forgot-dialog {
    display: grid;
    grid-template-areas:
        "header"
        "body"
        "footer";
    max-width: 500px;
    min-width: 300px;
    max-height: 80vh;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9999;
    border-radius: 5px;
    background-color: white;
    color: #3a3a3a;
}

.forgot-dialog > * {
    padding: 15px;
}

.modal .modal-header {
    font-weight: bold;
    font-size: 22px;
    grid-area: header;
    border-bottom: 1px solid #141517;
}

.modal .modal-body {
    font-size: 16px;
    grid-area: body;
    overflow: scroll;
    min-height: 50px;
}
.modal .modal-body input {
    background-color: #d4d3d3;
}

.modal .modal-footer {
    font-size: 16px;
    grid-area: footer;
}

.modal .modal-footer.right {
    text-align: right;
}

.modal .overlay {
    display: block;
}

.overlay {
    position: fixed;
    display: none;
    top: 0;
    bottom: 0;
    background-color: rgb(27 32 57 / 78%);
    width: 100%;
    height: 100vh;
}

.cancel-button {
    border: 1px solid black;
    border-radius: 5px;
}

.btn.forgot-submit {
    width: unset;
    font-size: 14px;
    padding: 0.75em 1em;
}
