body {
    background-color: #cce4ff;
    font-size: 13px;
}

.login-form,
.signup-form {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    background-color: #cce4ff;
    background-image: -webkit-linear-gradient(
        63.5deg,
        #cce4ff 50%,
        #e5f1ff 50%
    );
    display: flex;
    justify-content: right;
    align-items: center;
    position: relative;

    overflow-y: auto;
}
.login-form::before,
.signup-form::before {
    position: absolute;
    content: "";
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100vh;
    background: url("../images/login_bg.svg") left bottom no-repeat;
    z-index: 0;
    background-size: 50%;
}

.signup-form::before {
    background: url("../images/registration_bg.svg") left bottom no-repeat;
    background-size: 50%;
}
.forgot-form::before {
    background: url("../images/login_bg.svg") left bottom no-repeat;
    background-size: 50%;
}
.login-form .container,
.signup-form .container {
    min-width: 600px;
    max-width: 50%;
    height: 100%;
    background: #cce4ff;
    padding: 0px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    margin: 0;
    z-index: 101;
}

.loginContainer {
    background: #e5f1ff;
    margin: 15px 0;
    padding: 30px 60px 20px;
    height: auto;
    border-radius: 5px;
    max-width: 520px;
}
.loginContainer .loginTitle {
    text-transform: uppercase;
    font-size: 20px;
    font-weight: 600;
    color: #225288;
}
.loginContainer label {
    color: #333;
}
.loginContainer input[type="text"],
.loginContainer input[type="password"] {
    border: 1px solid #fff;
}
input:-internal-autofill-selected {
    appearance: menulist-button;
    background-image: none !important;
    background-color: light-dark(
        rgb(255, 255, 255),
        rgba(255, 255, 255, 1)
    ) !important;
    color: fieldtext !important;
}

.loginContainer a {
    color: #000;
    text-decoration: none;
}
.loginContainer a:hover {
    color: #000;
    text-decoration: underline;
}

.btn.btn-primary {
    background: #225288;
}

@media (max-width: 768px) {
    .login-form .container,
    .signup-form .container {
        min-width: 100%;
        max-width: 100%;
        width: 100%;
        background: none;
    }
    .login-form::before,
    .signup-form::before {
        background: none;
    }
    .loginContainer {
        padding: 30px 8% 20px;
        width: 100%;
    }
}
