body {
    font-family: Arial, sans-serif;
    text-align: center;
    background-color: #f4f4f9;
    padding: 50px;
}

.logo {
    font-size: 36px;
    font-weight: bold;
    color: #2c3e50;
}

.username {
    font-size: 24px;
    color: #34495e;
}

.hidden-password {
    font-size: 28px;
    color: #7f8c8d;
}

.form-container {
    margin-top: 20px;
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    margin: 0 auto;
}

.form-container input, .form-container select {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.form-container button {
    width: 100%;
    padding: 12px;
    background-color: #2ecc71;
    border: none;
    border-radius: 5px;
    color: white;
    font-size: 16px;
}

.forgot-password {
    font-size: 14px;
    color: #3498db;
    text-decoration: none;
}

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

.error {
    color: red;
}