﻿body {
    font-family: 'Nunito Sans';
}

.container {
    padding-block: 129px;
    width: 100%;
    background: url('main_bg_1920.png') no-repeat center #EBEDF5;
}

.form {
    position: relative;
    display: flex;
    justify-content: center;
}

.title {
    color: #153885;
    text-align: center;
    font-size: 40px;
}

.sub_title, #info {
    padding-top: 11px;
    color: #3E3D40;
    text-align: center;
    font-size: 16px;
}

.sub_title a {
    font-weight: 700;
    color: #3E3D40;
    text-decoration: none;
}

#username, #forgot_email, #password {
    margin-top: 36px;
    border-radius: 20px;
    border: 1px solid rgba(37, 99, 235, 0.30);
    background-color: #F4F4F4;
}

#password {
    margin-top: 21px;
}

.wrapper {
display: flex;
justify-content: space-between;
padding-top: 25px;
}

.forgotPass {
    color: #3E3D40;
    text-align: right;
    font-family: 'Nunito Sans';
    font-size: 14px;
    font-weight: 500;
}

.checks {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #153885;
    font-size: 14px;
}

.checks input {
    width: 17px;
    height: 17px;
    border-radius: 3px;
    border: 1px solid rgba(37, 99, 235, 0.30);
    background-color: #F4F4F4;
}

.error {
    margin: 0;
}

.error-login,
.error-container {
    text-align: center;
    padding-top: 15px;
}

#submit, .Forgotsubmit {
    padding-block: 12px;
    color: #FFF;
    text-align: center;
    font-family: "Nunito Sans";
    font-size: 18px;
    line-height: 111%;
    text-transform: capitalize;
    border-radius: 60px;
    background-color: #153885;
    width: 323px;
    margin: 67px auto 0;
}

#submit:hover, .Forgotsubmit:hover
#submit:focus, .Forgotsubmit:focus {
    background-color: #0f2861;
}

@media only screen and (max-width: 1199px) {
    .container {
        padding-block: 102px;
        background: url('main_bg_1200.png') no-repeat center #EBEDF5;
    }

    .title {
        font-size: 32px;
    }
}

@media only screen and (max-width: 767px) {
    .container {
        background: url('main_bg_768.png') no-repeat top center #EBEDF5;
    }

    #form-container {
        max-width: 300px;
        margin: auto;
    }

    #submit, .Forgotsubmit {
        width: 300px;
    }
}