/* Full Screen Background */
.login-bg {
    background: radial-gradient(circle at top right, #1e1b4b, #020617);
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    padding: 20px; /* Prevents edge touching on mobile */
}

/* Glassmorphism Card */
.login-card {
    background: rgba(30, 41, 59, 0.7); /* Slightly darker for readability */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
}

/* Input Fields */
input {
    width: 100%;
    padding-left: 45px !important; /* Space for icon */
    height: 50px;
    background: rgba(0, 0, 0, 0.3) !important; /* Darker background */
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: #fff !important;
    border-radius: 12px !important;
    font-size: 1rem;
    transition: all 0.3s ease;
}

input:focus {
    box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.2) !important; /* Purple Glow */
    border-color: #8b5cf6 !important;
    background: rgba(0, 0, 0, 0.5) !important;
}

input::placeholder {
    color: rgba(255, 255, 255, 0.4) !important;
}

/* Button Styling */
.btn-glow {
    background: linear-gradient(135deg, #8b5cf6, #3b82f6);
    border: none;
    font-size: 1.05rem;
    transition: transform 0.2s, box-shadow 0.2s;
    border-radius: 12px;
}

.btn-glow:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px -5px rgba(139, 92, 246, 0.5);
    background: linear-gradient(135deg, #7c3aed, #2563eb);
}

.btn-glow:active {
    transform: translateY(0);
}

.toggle-password {
    cursor: pointer;
    z-index: 10;
}