body {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background: linear-gradient(135deg, #8ae6f0, #ffffff);

}

.login-container {
    padding: 20px;
    border-radius: 5px;
    width: 90%; /* Full width on mobile */
    max-width: 400px; /* Max width to prevent too large on larger screens */
}

h1 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 24px; /* Slightly larger font for welcome message */
}

.login-form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

h2 {
    text-align: center;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 15px;
}

label {
    margin-bottom: 5px;
    font-weight: bold;
}

input[type="text"],
input[type="password"] {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
}

button {
    padding: 10px;
    background-color: #469ea7;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    margin-top: 10px; /* Added margin for better spacing */
}

button:hover {
    background-color: #01535c;
}

.message {
    text-align: center;
    margin-top: 15px;
}
