/* whole page styles */
body, html{
    margin:0;
    padding:0;
    min-width: fit-content;
    font-family: "Roboto", sans-serif;
}

.container{
    width: 100%;
    height: 100vh;
    display: flex;
}

/* left side of the page */

.left{
    flex: 50%;
    background-color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* #back{
    position: absolute;
    top: 0;
    left: 0;
    margin: 2rem 0 0 2rem;
    font-size: xx-large;
    color: gray;
} */

.left h2{
    color: #015EA5;
    font-size: 2.25rem;
    font-weight: 700;
    padding: 0;
    margin: 0;
}

.left p{
    color: rgb(106, 106, 106);
    font-size: 0.875rem;
    font-weight: 400;
    padding: 0;
    margin: 0 0 2rem 0;
}

.left label{
    color: #015EA1;
    font-size: 0.875rem;
    font-style: normal;
    font-weight: 700;
    margin: 0.5rem;
    margin: 0.5rem 0 0.5rem 0;
}

.left input{
    width: 22.75rem;
    height: 2.5rem;
    border-radius: 0.3125rem;
    border: 1px solid #AAA;
    background-color: white !important;
    margin: 0.5rem 0 0.5rem 0;
    padding-left: 0.5rem;
}

.left #forgot-password{
    display: flex;
    color: #015EA5;
    font-size: 0.875rem;
    font-style: normal;
    font-weight: 700;
    justify-content: right ;
    text-decoration-line: underline;
    margin: 0.5rem 0 0.5rem 0;
    cursor: pointer;
}

.left #login-button{
    margin: 0 0 0 0;
    font-family: "Roboto", sans-serif;
    color: #A4A4A4;
    font-size: 0.875rem;
    font-style: normal;
    font-weight: 400;
    width: 23.5rem;
    height: 2.5rem;
    flex-shrink: 0;
    border-radius: 0.3125rem;
    border: 0px solid #A4A4A4;
    background: #DDD;
}

.left #enter-button{
    margin: 0 0 0 0;
    font-family: "Roboto", sans-serif;
    color: #A4A4A4;
    font-size: 0.875rem;
    font-style: normal;
    font-weight: 400;
    width: 23.5rem;
    height: 2.5rem;
    flex-shrink: 0;
    border-radius: 0.3125rem;
    border: 0px solid #A4A4A4;
    background: #DDD;
}

.footer-text{
    position: absolute;
    bottom: 0;
    left: 2rem;
}

/* right side of the page */
.right{
    flex: 50%;
    overflow: hidden;
}

.right::before{
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: #015EA5;
    mix-blend-mode: multiply;
    
    z-index:-4;
}

.right-top{
    flex: 25%;
}
.right-bottom{
    flex: 25%;
}

.flow-header{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

#logo {
    width: 26.625rem;
    height: 11.3125rem;
}
img{
    width: 100%;
    height: 50%;
}

#banner-pic-1{
    position: absolute;
	top: 0;
    height: 50%;
    width: 50%;
    object-fit: cover; 
    object-position: 50% 50%; 
    z-index:-5;
}

#banner-pic-2{
    position: absolute;
	bottom: 0;
    height: 50%;
    width: 50%;
    object-fit: cover;
    object-position: 50% 50%; 
    z-index:-5;
}

h1{
    margin-top: 1rem;
    font-size: 3rem;
    color: white;
    font-style: normal;
    font-weight: 700;
    line-height: 1.5625rem; /* 39.063% */
}

/* tablet screen sizes */
@media only screen and (max-width: 770px) {
    .left{
        flex: 100%;
    }
 
    .right{
        flex: 100%;
    }
    .container{
        width: 100%;
        height: 100vh;
        display: flex;
        flex-direction: column;
    }
    img{
        width: 100%;
        height: 25%;
    }

    #logo{
        width: 20rem;
        height: 8.5rem;
        top: 75%;
        transform: translate(0,-50%);
        position: absolute;
    }
    h1{
        font-size: 2rem;
        position: absolute;
        transform: translate(0,4rem);
        top: 75%;
    }

    #banner-pic-1{
        position: absolute;
        top: 50%;
        height: 25%;
        width: 100%;
        object-fit: cover; 
        object-position: 50% 25%; 
        z-index:-5;
    }
    
    #banner-pic-2{
        position: absolute;
        bottom: 0;
        height: 25%;
        width: 100%;
        object-fit: cover;
        object-position: 50% 50%; 
        z-index:-5;
    }

    .right::before{
        content: "";
        display: block;
        position: absolute;
        bottom: 0;
        right: 0;
        width: 100%;
        height: 50%;
        background: #015EA5;
        mix-blend-mode: multiply;
        
        z-index:-4;
    }

    .footer-text{
        font-size: smaller !important;
        position: absolute;
        top: 50.5%;
        transform: translate(0,-2rem);
        left: 1rem;
    }

    .error{
        margin-bottom: 0.75rem !important;
        padding: 0;
    }
  }

  /* phone screen sizes */
  @media only screen and (max-width: 550px) {
    .left{
        flex: 100%;
    }
 
    .left input{
        width: 100%;
        height: 2.5rem;
        border-radius: 0.3125rem;
        border: 1px solid #AAA;
        background-color: white !important;
        margin: 0.5rem 0 0.5rem 0;
        padding-left: 0.5rem;
    }

    .left h2{
        text-align: center;
        margin-top: 1%;
    }
    
    .left p{
        text-align: center;
    } 

    .left #login-button{
        width: 17rem;
    }

    #logo{
        width: 15rem !important;
        height: 6.5rem !important;
        top: 75%;
    }

    h1{
        font-size: 1.5rem !important;
        transform: translate(0,2.5rem)!important;;
    }


    .right{
        flex: 100%;
    }
    .container{
        width: 100%;
        height: 100vh;
        display: flex;
        flex-direction: column;
    }

    #logo{
        width: 20rem;
        height: 8.5rem;
        top: 75%;
        transform: translate(0,-50%);
        position: absolute;
    }
    h1{
        font-size: 2rem;
        position: absolute;
        transform: translate(0,4rem);
        top: 75%;
    }

    #banner-pic-1{
        position: absolute;
        top: 50%;
        height: 25%;
        width: 100%;
        object-fit: cover; 
        object-position: 50% 25%; 
        z-index:-5;
    }
    
    #banner-pic-2{
        position: absolute;
        bottom: 0;
        height: 25%;
        width: 100%;
        object-fit: cover;
        object-position: 50% 50%; 
        z-index:-5;
    }

    .right::before{
        content: "";
        display: block;
        position: absolute;
        bottom: 0;
        right: 0;
        width: 100%;
        height: 50%;
        background: #015EA5;
        mix-blend-mode: multiply;
        
        z-index:-4;
    }

    .footer-text{
        font-size: smaller !important;
        position: relative;
        transform: translate(-1rem,1rem);
    }

    .error{
        margin-bottom: 0.75rem !important;
        padding: 0;
    }
  }