body {
    background-color: #f8f9fa;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.login-container {
    height: 100vh; /* Make the container fill the viewport height */
}

.login-box {
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
    max-width: 450px; /* Limit max width for better appearance on larger screens */
    width: 100%; /* Ensure it takes full width on small screens */
}

.logo {
    max-width: 150px; /* Adjust logo size as needed */
    height: auto;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .login-box {
        padding: 1.5rem;
        margin: 1rem;
    }
}