.login-container {
    margin: 50px auto;
    padding: 20px;
    max-width: 400px;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.login-title {
    font-size: 2rem;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 20px;
}

.login-form .form-group {
    margin-bottom: 15px;
    text-align: left;
}

.login-form label {
    font-size: 1rem;
    font-weight: bold;
    color: #34495e;
    margin-bottom: 5px;
    display: block;
}

.login-form input {
    width: 100%;
    padding: 10px;
    font-size: 1rem;
    border: 1px solid #bdc3c7;
    border-radius: 4px;
    box-sizing: border-box;
    transition: border-color 0.3s ease;
}

.login-form input:focus {
    border-color: #3498db;
    outline: none;
}

.login-button {
    background-color: #2ecc71;
    color: #ffffff;
    border: none;
    padding: 10px 15px;
    font-size: 1rem;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.login-button:hover {
    background-color: #27ae60;
}

/* Responsive styles for smaller screens */
@media (max-width: 800px) {
    .login-container {
        margin: 0; /* Remove margin to make it full width */
        width: 100%; /* Full width */
        max-width: none; /* Disable max-width */
        /* height: 100vh; */
        display: flex;
        flex-direction: column;
        justify-content: center;
        border-radius: 0; /* Remove border radius for full screen */
    }

    .login-title {
        font-size: 1.8rem; /* Slightly smaller font size for smaller screens */
    }

    .login-form {
        width: 100%; /* Ensure the form takes full width */
    }

    .login-form .form-group {
        margin-bottom: 20px; /* Add more spacing between fields */
    }

    .login-button {
        width: 100%; /* Make the button full width */
        padding: 12px; /* Add more padding for better touch experience */
    }
}

/* Additional styles for very small screens (e.g., phones) */
@media (max-width: 480px) {
    .login-title {
        font-size: 1.5rem !important; /* Reduce font size for smaller screens */
    }

    .login-container {
        padding: 15px !important; /* Reduce padding to fit smaller screens */
    }

    .login-form input {
        padding: 8px !important; /* Reduce input padding for smaller screens */
        font-size: 0.9rem !important; /* Slightly smaller font size for inputs */
    }

    .login-button {
        padding: 10px !important; /* Adjust button padding for smaller screens */
        font-size: 0.9rem !important; /* Slightly smaller font size for buttons */
    }
}