.login-container {
    min-height: 100vh;
}

.login-image {
    background: linear-gradient(rgba(15, 23, 42, 0.75), rgba(15, 23, 42, 0.85)),
                url('https://images.unsplash.com/photo-1550751827-4bd374c3f58b?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxzZWFyY2h8MTB8fHRlY2h8ZW58MHx8MHx8fDA%3D&auto=format&fit=crop&w=800&q=60') center/cover;
    color: white;
    position: relative;
}

.login-content {
    position: relative;
    z-index: 1;
    padding: 2rem;
}

.login-form {
    padding: 4rem;
    background: white;
}

.form-control-custom {
    border: 2px solid #e2e8f0;
    border-radius: 0.5rem;
    padding: 0.75rem 1.25rem;
    transition: all 0.3s ease;
}

.form-control-custom:focus {
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.2);
}

.btn-microsoft {
    background: #fff;
    border: 2px solid #e2e8f0;
    color: #5e5e5e;
    padding: 0.75rem 2rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-microsoft:hover {
    border-color: #2563eb;
    color: #2563eb;
}

.text-shadow {
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

@media (max-width: 768px) {
    .login-image {
        height: 400px;
    }
    .login-form {
        padding: 2rem;
    }
}