/* Background Styling */
body {
    font-family: Arial, sans-serif;
    background: linear-gradient(135deg, #001f3f, #0074cc, #003366);
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
}

/* Container */
.container {
    width: 400px;
    text-align: center;
}

/* Login Form (Glass Effect) */
.glass-form {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s;
}

.glass-form:hover {
    transform: scale(1.05);
}

/* Logo */
.logo, .dashboard-logo {
    width: 120px;
    margin-bottom: 20px;
}

/* Input Fields */
input {
    width: 90%;
    padding: 12px;
    margin: 10px 0;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

/* Button */
button {
    padding: 12px 20px;
    margin-top: 10px;
    background: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    width: 100%;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.3s;
}

button:hover {
    background: #0056b3;
}

/* Account Balance */
.balance-container {
    background: #00c853;
    color: white;
    padding: 25px;
    border-radius: 12px;
    font-size: 22px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

/* Grid for Menu Items */
.menu-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 20px;
}

/* Menu Items */
.menu-item {
    background: #28a745;
    color: white;
    padding: 15px;
    border-radius: 10px;
    font-size: 18px;
    cursor: pointer;
    text-align: center;
}

.menu-item:hover {
    background: #218838;
}

/* Logout Button */
.logout {
    background: #dc3545;
}

.logout:hover {
    background: #c82333;
}

/* Hidden Elements */
.hidden {
    display: none;
}