body {
    background-color: #0b1120;
    color: #f8fafc;
}

.hero-bg {
    background-image: linear-gradient(to bottom, rgba(11, 17, 32, 0.6), rgba(11, 17, 32, 1)), url('../kugitabg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.glass-panel {
    background: rgba(30, 41, 59, 0.7);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Custom Checkbox Styling */
input[type="checkbox"] {
    accent-color: #00e5ff;
    width: 1.5rem;
    height: 1.5rem;
    cursor: pointer;
}

.gradient-text {
    background: linear-gradient(to right, #00e5ff, #ff6d00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

input:focus, textarea:focus, select:focus {
    outline: none;
    border-color: #00e5ff !important;
    box-shadow: 0 0 10px rgba(0, 229, 255, 0.2);
}

/* Loading Spinner */
.spinner {
    border: 3px solid rgba(255, 255, 255, 0.1);
    border-top: 3px solid #ff6d00;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

.shake {
    animation: shake 0.4s ease-in-out 0s 2;
}