/* Avtek DMS - Main Styles */

/* Body and Base Styles */
body {
    font-family: 'Inter', system-ui, sans-serif;
}

/* Background Gradient */
.body-gradient-bg {
    background-color: #dedede;
    background-image: 
        radial-gradient(circle at center, hsla(354, 100%, 85%, 0.541) 0px, transparent 70%),
        radial-gradient(circle at center, hsla(218, 97%, 87%, 0.464) 0px, transparent 60%);
    background-position: -70% -30%, 50% -100%;
    background-size: 80vw 80vw, 60vw 60vw;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

/* Form Input Styles */
.form-input {
    background: #e9e9e9 !important;
    border: 2px solid transparent !important;
    transition: background 0.3s ease;
    outline: none !important;
    box-shadow: none !important;
}

.form-input:focus {
    background: linear-gradient(#e9e9e9, #e9e9e9) padding-box, linear-gradient(to right, #cf528c, #a166a0) border-box !important;
    outline: none !important;
    box-shadow: none !important;
}

/* Header Z-Index */
.header-z-index {
    z-index: 9999;
}
