/* Login Page*/
.fill-container{
    background-color: white;
}

@media (max-width: 768px) {
    .fill-container{
        margin: 0 auto;
        width: 100%;
    }
}
@media screen and (max-width: 768px) {
    .h3-home {
        text-align: center;
    }
}

.user-login-button{
    border-color: dodgerblue;
    color:white !important;
    padding: 10px;
    width: 250px;
    height: 50px;
    border-width: 2px;
    border-radius: 5px;
    line-height: 0;
    font-size: 14px;
    transition: all .5s ease-out;
    background: dodgerblue;
    background-size: 200% 100%;
    background-position: right;
    cursor: pointer;
}
.user-login-button:hover{
    color: dodgerblue !important;
    background-color: white;
    border-color: dodgerblue;
    box-shadow: 0 7px 14px 0 rgba(60, 66, 87, 0.1),
    0 3px 6px 0 rgba(0, 0, 0, 0.07);
}
.user-login-button a{
    color:inherit;
    text-decoration: none;
}
.split-screen {
    display: flex;
    background: white;
    padding-top: 30px;
    padding-bottom: 20px;
}
.left-screen, .right-screen {
    flex: 1;
}
.left-screen-r{
    flex: 1;
}

.left-screen{
    display: flex;
    flex-direction: column;
    padding-left: 200px;
    padding-top: 20px;
}

.left-screen img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.left-screen-r{
    display: flex;
    flex-direction: column;
    padding-top: 20px;
    padding-left: 100px;
    height: 70vh;
    overflow: hidden;
}

.left-screen-r img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.right-screen{
    background-color: var(--color-white);
}
.right-screen img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.right-screen-r{
    background-color: var(--color-white);
    padding-left: 100px;
    padding-right: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* When logged in, make right screen full width */
.split-screen.full-width {
    width: 100%;
}

.split-screen.full-width .right-screen-r {
    width: 100%;
    flex: 1;
    padding-left: 50px;
    padding-right: 50px;
    max-width: 100%;
    box-sizing: border-box;
}
.right-screen-r img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.form {
    width: 100%;
    max-width: 100%;
}

.form-control {
    width: 100%;
}

.sign-button {
    width: 100%;
}

@media (max-width: 768px) {
    .left-screen{
        padding-left: 70px;
        width: 100%;
    }
    .left-screen h3, p{

    }
    .left-screen form{
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .form-control {
        width: 100%;
        max-width: 400px;
        font-size: 16px;
    }
    .right-screen {
        display: none;
    }

    .left-screen-r{
        padding-left: 70px;
        width: 100%;
    }
    .left-screen-r h3, p{

    }
    .left-screen-r form{
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .left-screen-r{
        display: none;
    }
}

.split-screen-about {
    display: flex;
    flex-wrap: wrap;
    background: white;
    padding: 30px 0;
}

.split-screen-about > .left-screen,
.split-screen-about > .right-screen {
    flex: 1;
    min-width: 300px;
    padding: 50px;
    box-sizing: border-box;
}

/* Images fit container */
.split-screen-about img {
    width: 100%;
    height: auto;
    object-fit: cover;
}


@media (max-width: 768px) {
    .split-screen-about {
        flex-direction: column;
        padding-left: 20px;
        padding-right: 20px;
    }

    .left-screen, .right-screen {
        width: 100%;
        padding-left: 0;
        padding-right: 0;
    }
    
    /* Hide image on about page for mobile */
    .split-screen-about .left-screen {
        display: none;
    }

    .right-screen {
        display: block;
        margin-top: 20px;
    }

    .left-screen img, .right-screen img {
        width: 100%;
        height: auto;
    }
}


@media (max-width: 768px) {
    .split-screen > .left-screen {
        width: 100%;
        padding: 20px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        min-height: 100vh;
        box-sizing: border-box;
    }

    .split-screen > .left-screen .form {
        width: 100%;
        max-width: 400px;
    }
    .split-screen > .right-screen{
        display: none;
    }
}

