Input Fields
.input-field {
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.input-field:focus {
    background-color: #E0F2FE;
    box-shadow: 0 4px 8px rgba(0, 123, 255, 0.1);
}

/* Login Button Style */
.login-btn {
    background: #3B82F6;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.login-btn:hover {
    background: #2563EB;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
}

/* Login Card */
.login-card {
    max-width: 400px;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* Animated Background */
#animated-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

body {
    font-family: 'NRT-R';
    background-color: #0A192F;
    overflow: hidden;
}
