html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: 'Nunito', sans-serif;
    overflow: hidden;
}

.login-container {
    display: flex;
    height: 100vh;
    width: 100vw;
}

.login-image-side {
    flex: 1;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    position: relative;
}

.login-image-side::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5); 
    z-index: 1;
}

.login-image-text {
    position: relative;
    z-index: 2;
    padding: 20px;
}

.login-image-text h1 {
    font-size: 2.5rem;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}


.login-form-side {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f8fafc;
    padding: 40px;
}

.login-form-wrapper {
    width: 100%;
    max-width: 400px;
}

@media (max-width: 768px) {
    .login-image-side {
        display: none;
    }
    .login-form-side {
        flex: 2; /* Take more space on smaller screens */
    }
} 
