.login-section {
    height: 100vh;
    width: 100%;
}

.login-page {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 109.5vh;
    width: 100%;
    background: #f9f9f9;
    overflow: hidden;
    
}

.login-image {
    
    width: 50%;
}

.login-image img {
    
    max-width: 100%;
    height: 100%;
}

.login-details {
    flex: 1;
    padding: 20px;
}

.login-content {
    text-align: center;
}

.login-form {
    max-width: 500px;
    margin: 0 auto;
    text-align: start;
}

.login-form h2 {
    font-size: 45px;
}

.login-form  input {
    display: block;
    width: 100%;
    margin-bottom: 10px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}


.login-form button {
    width: 100%;
    padding: 10px 20px;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
}



@media (max-width: 767px) {
    .login-image,
    .login-details {
        width: 100%; /* Make both sections take full width on small screens */
    }

    .login-page {
        flex-direction: column;
        height: 100vh;
        overflow: visible;
        
    }

    .login-section {
        margin-bottom: 200px;
    }

    .login-image img {
        max-width: 100%; 
        height: auto;
    }

    .login-form {
        margin-top: 40px;
    }
}