body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
}
.form-container {
    text-align: center;
}

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

.login-container {
    max-width: 400px;
    margin: 100px auto;
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
input[type="email"],
input[type="password"],
input[type="text"] {
    width: 100%;
    padding: 7px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

input[type="submit"] {
    width: 100%;
    padding: 10px;
    background-color: #2c3e50;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

input[type="submit"]:hover {
    background-color: #34495e;
}

.forgot-password {
    display: block;
    margin-top: 15px;
    color: #2980b9;
    text-decoration: none;
}

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