/* Custom styles for landing page */
/* Tailwind handles most styling via CDN */

* {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

/* Smooth transitions for hover effects */
.hover\:shadow-md {
    transition: box-shadow 0.3s ease;
}

/* Form focus states */
input:focus {
    outline: none;
}

/* Success message styling */
.success-message {
    color: #10b981;
    font-weight: 500;
}

/* Error message styling */
.error-message {
    color: #ef4444;
    font-weight: 500;
}

/* Loading state for button */
button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}
