body {
    font-family: Arial, sans-serif;
    background-color: white; /* Changed from #f4f4f4 to white */
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.container {
    background-color: #fff;
    padding: 20px 30px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
    text-align: center;
}

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

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

.form-group label {
    display: block;
    margin-bottom: 5px;
    color: #555;
}

.form-group input[type="text"],
.form-group input[type="password"] {
    width: calc(100% - 20px);
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
}

button[type="submit"] {
    background-color: #1976d2; /* Changed from #007bff to #1976d2 */
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    width: 100%;
}

button[type="submit"]:hover {
    background-color: #1565c0; /* Slightly darker shade for hover */
}

.error {
    color: red;
    margin-top: 10px;
}

p {
    color: #666;
    line-height: 1.6;
}

p a {
    color: #1976d2; /* Changed from #007bff to #1976d2 */
    text-decoration: none;
}

p a:hover {
    text-decoration: underline;
}
