/* Custom styles for login page — Tailwind handles the rest */

*, *::before, *::after { box-sizing: border-box; }

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Input focus glow */
input:focus {
    background-color: #fff !important;
}

/* Checkbox custom color */
input[type="checkbox"] {
    accent-color: #4361ee;
}

/* Smooth left panel gradient overlay */
.lg\:flex > div:first-child::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26,34,54,0.4) 0%, transparent 60%);
    pointer-events: none;
}

/* Button loading state */
button[type="submit"]:active {
    transform: scale(0.98);
}

/* Scrollbar hidden on overflow panels */
::-webkit-scrollbar { width: 0; }
