/* Layout of the login page */
.login-wrapper {
    display: flex;
    min-height: 100vh;
    align-items: center;
    justify-content: center;
    background-color: #f7f7f7;
}

/* Container for the form */
.login-container {
    background-color: white;
    padding: 40px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    width: 100%;
    max-width: 500px;
    text-align: center;
}

.login-container h1 {
    margin-bottom: 20px;
    font-size: 2rem;
    color: #333;
}

.form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form label {
    text-align: left;
    font-weight: bold;
}

.form input {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
}

.form input:focus {
    border-color: #4CAF50;
    outline: none;
    box-shadow: 0 0 5px rgba(76, 175, 80, 0.5);
}

.login-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
}

/* Image container for the background */
.image-container {
    display: none; /* Hide on small screens */
}

@media (min-width: 768px) {
    .image-container {
        display: block;
        flex-basis: 40%;
        padding-left: 20px;
    }

    .image-container img {
        width: 100%;
        height: auto;
        border-radius: 8px;
    }
}
