body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f9;
    margin: 0;
    padding: 0;
}

.login-container {
    width: 30%;
    margin: 50px auto;
    background-color: #fff;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

h2 {
    margin-bottom: 20px;
    color: #333333;
}

label {
    display: block;
    margin-bottom: 5px;
    color: #555555;
    font-size: 14px;
    text-align: left;
}

input[type="text"],
input[type="password"] {
    width: 100%;
    padding: 8px;
    margin-bottom: 15px;
    border: 1px solid #cccccc;
    border-radius: 4px;
    box-sizing: border-box;
    font-size: 16px;
    /* Adjust font size for input */
}

/* Placeholder responsiveness */
input[type="text"]::placeholder,
input[type="password"]::placeholder {
    font-size: 16px;
    /* Default size */
}

/* Media Queries for responsiveness */
@media (max-width: 768px) {
    .login-container {
        width: 60%;
    }

    input[type="text"]::placeholder,
    input[type="password"]::placeholder {
        font-size: 14px;
        /* Adjust font size on smaller screens */
    }
}

@media (max-width: 480px) {
    .login-container {
        width: 80%;
    }

    input[type="text"]::placeholder,
    input[type="password"]::placeholder {
        font-size: 12px;
        /* Adjust font size even further on very small screens */
    }
}

button {
    width: 100%;
    padding: 10px;
    background-color: #4CAF50;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
}

button:hover {
    background-color: #45a049;
}

.remember-me {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.remember-me input {
    margin-right: 10px;
}

.forgot-password {
    color: #007BFF;
    text-decoration: none;
    font-size: 14px;
    margin-top: 10px;
    display: inline-block;
}

.forgot-password:hover {
    text-decoration: underline;
}

.hint {
    margin-top: 20px;
    font-size: 12px;
    color: #888888;
}

.error-message {
    color: red;
    font-size: 14px;
    margin-top: 10px;
    margin-bottom: 10px;
    text-align: left;
}