#auth-view h1 {
    font-family: 'Arial', sans-serif;
    font-size: 36px;
    font-weight: bold;
    color: #3498db;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    margin-bottom: 20px;
}
#login-username, #login-password {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #3498db;
    border-radius: 5px;
    font-size: 16px;
    color: #3498db;
    background-color: #f9f9f9;
    transition: border-color 0.3s ease;
}

#login-username:focus, #login-password:focus {
    border-color: #e74c3c;
    outline: none;
}
