﻿.login-container {
    height: 100vh;
    padding: 0;
}

.login-image-container {
    position: sticky;
    top: 0;
    height: 100vh;
    overflow: hidden;
}

.login-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.login-logo {
    width: 250px;
    height: auto;
}

.login-form-container {
    height: 100vh;
    overflow-y: auto;
    padding: 20px;
}

.login-form {
    background-color: white;
    padding: 0;
    max-width: 400px;
}

@media (max-width: 768px) {
    .login-container {
        height: auto;  
        overflow-y: visible;  
    }

    .login-image-container {
        height: 25vh;
        position: relative; 
    }

    .login-image {
        border-bottom-left-radius: 50%;
        border-bottom-right-radius: 50%;
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .login-form-container {
        height: auto;
        overflow-y: visible;
        padding-top: 1rem;
    }

    .login-form {
        padding: 0;
        max-width: 100%;
    }

    .login-logo {
        width: 150px;
        height: auto;
    }
}
