/*
    Login page
*/

.login-image {
    background-image: url("../img/login-img.jpeg");
    background-repeat: no-repeat;
    background-size: auto 100%;
}
.login-main {
    position: relative;
    /*padding: 100px 150px;*/
    background-size: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50%;
    background-image: url(../img/bg-main.png);
}

.login-logo {
    margin-bottom: 60px;
    display: block;
}
.form-wrapper {
    width: 60%;
    text-align: center;
}
.input-1 {
    border: 1px solid #2C4273;
    border-radius: 0;
    background: #F5F7F9;
    width: 100%;
    margin-bottom: 1rem;
    padding: 12px 12px;
}
.input-1::placeholder {
    color: #B7B7B7;
}
.input-1:focus-visible {
    border: 1px solid #745044;
    background-color: #f5f7f9;
}
.forgot-password {
    font-weight: 400;
    color: #745044;
}
.submit-button {
    background: #745044;
    width: 100%;
    padding: 12px;
    border: none;
    color: #fff;
    margin-top: 30px;
}

@media (max-width: 576px) {
    .form-wrapper {
        width: 80% !important;
    }
    .login-main {
        width: 100% !important;
    }
}
