/* Login layout background styles */
.login-body {
    background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%);
}

.login-container {
    z-index: 1;
}

.login-bg-shapes {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: -1;
}

.shape {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: -150px;
    right: -150px;
}

.shape-2 {
    width: 200px;
    height: 200px;
    bottom: -100px;
    left: -100px;
}

.shape-3 {
    width: 150px;
    height: 150px;
    top: 50%;
    left: 20%;
}
/* Override spinner for a cleaner look */
#spinner {
    background-color: rgba(255, 255, 255, 0.9) !important;
}

/* Media queries for responsive design */
@media (max-width: 576px) {
    .login-card {
        padding: 1.5rem !important;
    }

    .govt-emblem {
        width: 60px;
        height: 60px;
    }

        .govt-emblem i {
            font-size: 1.5rem;
        }
}