body {
    font-family: proxima-nova, sans-serif;
    /* background-color: var(--grey); */
    height:80vh;
    color: var(--light-grey);
}

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;
}

.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: 60px 20px;
}

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

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

    .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");
    }

}

.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: 60px;
}

.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: #eeeeee;
}

.form-inputs input {
    width: 100%;
    height: 40px;
    border-radius: 2px;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.15);
    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: white;
}

.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:0px;
}
@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;
}

.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: 80%;
    margin: 0 10% 30px;
}

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

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

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

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