/* Basic Laravel Breeze styles */
@import url('https://fonts.bunny.net/css?family=figtree:400,500,600&display=swap');

* {
    box-sizing: border-box;
}

body {
    font-family: 'Figtree', sans-serif;
    background-color: #f3f4f6;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

.min-h-screen {
    min-height: 100vh;
}

.flex {
    display: flex;
}

.items-center {
    align-items: center;
}

.justify-center {
    justify-content: center;
}

.pt-6 {
    padding-top: 1.5rem;
}

.sm\:pt-0 {
    padding-top: 0;
}

.bg-gray-100 {
    background-color: #f3f4f6;
}

.w-full {
    width: 100%;
}

.sm\:max-w-md {
    max-width: 28rem;
}

.mt-6 {
    margin-top: 1.5rem;
}

.px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.py-4 {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.bg-white {
    background-color: white;
}

.shadow-md {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.overflow-hidden {
    overflow: hidden;
}

.sm\:rounded-lg {
    border-radius: 0.5rem;
}

.block {
    display: block;
}

.text-sm {
    font-size: 0.875rem;
}

.font-medium {
    font-weight: 500;
}

.text-gray-700 {
    color: #374151;
}

.mb-1 {
    margin-bottom: 0.25rem;
}

.border-gray-300 {
    border-color: #d1d5db;
}

.rounded-md {
    border-radius: 0.375rem;
}

.shadow-sm {
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.focus\:border-indigo-500:focus {
    border-color: #6366f1;
}

.focus\:ring-indigo-500:focus {
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

input[type="email"], input[type="password"] {
    width: 100%;
    padding: 0.5rem 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 0.375rem;
    font-size: 0.875rem;
    line-height: 1.25rem;
}

input[type="email"]:focus, input[type="password"]:focus {
    outline: none;
    border-color: #6366f1;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.flex {
    display: flex;
}

.items-center {
    align-items: center;
}

.justify-between {
    justify-content: space-between;
}

.mt-4 {
    margin-top: 1rem;
}

input[type="checkbox"] {
    margin-right: 0.5rem;
}

.text-indigo-600 {
    color: #4f46e5;
}

.hover\:text-indigo-900:hover {
    color: #312e81;
}

.underline {
    text-decoration: underline;
}

.ml-4 {
    margin-left: 1rem;
}

.inline-flex {
    display: inline-flex;
}

.px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
}

.py-2 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.bg-gray-800 {
    background-color: #1f2937;
}

.border {
    border-width: 1px;
}

.border-transparent {
    border-color: transparent;
}

.text-xs {
    font-size: 0.75rem;
}

.font-semibold {
    font-weight: 600;
}

.text-white {
    color: white;
}

.uppercase {
    text-transform: uppercase;
}

.tracking-widest {
    letter-spacing: 0.1em;
}

.hover\:bg-gray-700:hover {
    background-color: #374151;
}

.focus\:bg-gray-700:focus {
    background-color: #374151;
}

.focus\:outline-none:focus {
    outline: none;
}

.focus\:ring-2:focus {
    box-shadow: 0 0 0 2px rgba(156, 163, 175, 0.5);
}

.focus\:ring-offset-2:focus {
    box-shadow: 0 0 0 2px #f3f4f6, 0 0 0 4px rgba(156, 163, 175, 0.5);
}

.focus\:ring-indigo-500:focus {
    box-shadow: 0 0 0 2px #f3f4f6, 0 0 0 4px rgba(99, 102, 241, 0.5);
}

.disabled\:opacity-25:disabled {
    opacity: 0.25;
}

.transition {
    transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}

.duration-150 {
    transition-duration: 150ms;
}

.ease-in-out {
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

/* Media queries */
@media (min-width: 640px) {
    .sm\:max-w-md {
        max-width: 28rem;
    }
    
    .sm\:rounded-lg {
        border-radius: 0.5rem;
    }
    
    .sm\:pt-0 {
        padding-top: 0;
    }
}



