/* Seçim İşleri Auth - Frontend Styles */

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #1a1a1a;
}

::-webkit-scrollbar-thumb {
    background: #555;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #777;
}

/* Form animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.bg-white {
    animation: fadeIn 0.5s ease-out;
}

/* Input focus effects */
input:focus {
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1);
}

/* Button hover effects */
button[type="submit"]:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* Link hover effects */
a:hover {
    text-decoration: underline;
}

/* Error/Success message animations */
[role="alert"] {
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Loading state */
button[type="submit"]:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Responsive adjustments */
@media (max-width: 640px) {
    .max-w-md {
        padding: 0 1rem;
    }
    
    .bg-white {
        padding: 1.5rem !important;
    }
}
