

.login-wrapper {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.login-wrapper {
    width: 100%;
    overflow: hidden;
    height: 100vh
}

.login-wrapper .login-img {
    width: 66%
}

.login-img img {
    width: 100%;
    height: 100vh
}

.login-wrapper .login-box {
    width: 34%;
    height: 100vh;
    padding: 30px;
    overflow: auto;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
    background: #ffffff
}

.login-wrapper .login-box .login-userheading h3 {
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 15px;
    color: #000
}

.login-wrapper .login-box .login-userheading h4 {
    font-size: 14px;
    font-weight: 400;
    color: #212b36;
    line-height: 1.4
}

.login-wrapper .login-box .login-logo {
    display: block;
    margin-bottom: 25px;
    /* max-width: 150px */
}

@media (max-width: 991px) {
    .login-wrapper .login-img {
        display:none
    }

    .login-wrapper .login-box {
        width: 100%
    }
}

.login-btn:hover {
    box-shadow: 0 50px #fff inset!important;
    color: #0d392c!important;
}

.login-btn {
    width: 100%;
    font-weight: 700;
    background: #8bc43e!important;
    border-color: #8bc43e!important;
    padding: 12px;
    -webkit-transition: all .5s ease;
    -ms-transition: all .5s ease;
    transition: all .5s ease;
    margin-top: 15px;
    color: #fff!important
}

/* Full-screen wrapper */
.login-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: linear-gradient(135deg, #667eea, #0d382b);
    animation: backgroundAnimation 6s infinite alternate;
}

/* Responsive design */
@media (max-width: 576px) {
    .login-box {
        width: 100%; /* Full width on mobile */
        max-width: 100%; /* Remove max-width restriction */
        padding: 20px; /* Reduce padding for smaller screens */
    }
}

/* Background animation */
@keyframes backgroundAnimation {
    0% { background-position: 0% 50%; }
    100% { background-position: 100% 50%; }
}

/* Centering the login image */
.login-img {
    text-align: center;
    margin-bottom: 20px;
}

.login-img img {
    width: 60%;
    height: 70%;
    animation: bounceIn 1s ease-in-out;
}

/* Bouncing animation for the image */
@keyframes bounceIn {
    0% { transform: scale(0.5); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

/* Login box styling */
.login-box {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    animation: fadeIn 1.5s ease-in-out;
    max-width: 400px;
    width: 100%;
    
}

/* Fade-in animation */
@keyframes fadeIn {
    0% { opacity: 0; transform: translateY(-20px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* Style for input fields */
.form-control {
    border-radius: 50px;
}

/* Button styles */
.login-btn {
    width: 100%;
    padding: 10px;
    font-size: 18px;
    background: #667eea;
    border: none;
    color: #fff;
    transition: 0.3s;
}

.login-btn:hover {
    background: #5a67d8;
}

/* Forgot password link */
.forgot {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 14px;
    color: #667eea;
}