.main-container {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 100vw;
    min-height: 100vh;
    background: var(--gray-color);
}

.main-container {
    background-image: var(--gradient-background);
}

.form-container {
    width: 80%;
    height: 35rem;
    max-width: 50rem;
    max-height: 30rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0 solid #6b8591;
    border-radius: 0.5rem;
    box-shadow: 0px 1px 2px;
    box-sizing: border-box;
    background: var(--secondary-color);
}

.form-container .right, .form-container .left {
    width: 50%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.form-container .right .login-form{
    width: 100%;
    height: 40%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.form-container .login-form input {
    width: 18rem;
    margin: 0.5rem;
    padding: 0.4rem;
    border: none;
    border-bottom: 1.5px solid #878484;
    background: var(--secondary-color);
    font-size: 12.5pt;
    color: #353636;
}

.left {
    background-color: #F3F3F4;
}

.right span {
    padding: 0.3rem;
}

.submit {
    background: #38B0DC;
    border: none;
    border-radius: 50px;
    width: 18rem;
    height: 2rem;
    font-weight: 800;
    color: var(--secondary-color);
    cursor: pointer;
    margin-top: 2rem;
    margin-bottom: 0.5rem;
}

.form-container img {
    width: 70%;
    height: auto;
}

.options {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 7rem;
}

.options a {
    text-decoration: none;
    color: #004A80;
}

.right .footer {
    position: absolute;
    width: 100%;
    background: #F3F3F4;
    top: 90%;
    height: 10%;
}

.right .footer .title {
    color: #7E7E7E;
    font-weight: 800;
}

.right .footer .span {
    display: flex;
    justify-content: center;
}

.login-error {
    color: red;
    font-style: italic;
    font-size: 14px;
    
}

@media (max-width: 750px) {
    .form-container .left {
        display: none;
    }

    .form-container .right {
        width: 100%;
    }

    .form-container .login-form input {
        width: 16rem;
    }

    .submit {
        width: 16rem;
    }
}

@media (max-width: 400px){
    .form-container .login-form input {
        width: 12rem;
    }

    .submit {
        width: 12rem;
    }
}
