/*! Tailwind CSS Light Mode - Production Build */

/* Reset */
*, ::before, ::after {
  margin: 0;
  padding: 0;
  border: 0;
  box-sizing: border-box;
}

/* Base Styles */
html {
  height: 100%;
  -webkit-text-size-adjust: 100%;
  tab-size: 4;
  line-height: 1.5;
}

body {
  height: 100%;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: #ffffff;
  color: #1f2937;
}

/* Display utilities */
.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.flex-1 {
  flex: 1;
}

.flex-shrink-0 {
  flex-shrink: 0;
}

.grid {
  display: grid;
}

.hidden {
  display: none !important;
}

/* Width & Height */
.w-full {
  width: 100%;
}

.w-auto {
  width: auto;
}

.max-w-96 {
  max-width: 24rem;
}

.h-full {
  height: 100%;
}

.h-96 {
  height: 24rem;
}

.min-h-900 {
  min-height: 900px;
}

.h-screen {
  height: 100vh;
}

/* Spacing */
.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.mt-2 {
  margin-top: 0.5rem;
}

.mt-6 {
  margin-top: 1.5rem;
}

.mt-8 {
  margin-top: 2rem;
}

.gap-3 {
  gap: 0.75rem;
}

.gap-4 {
  gap: 1rem;
}

.gap-6 {
  gap: 1.5rem;
}

.px-6 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.py-12 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

/* Text styles */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  color: #1f2937;
}

h2 {
  font-size: 1.5rem;
  line-height: 2.25rem;
  letter-spacing: -0.025em;
}

label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: #374151;
}

p {
  font-size: 0.875rem;
  color: #6b7280;
}

/* Links */
a {
  color: #6366f1;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}

a:hover {
  color: #4f46e5;
}

/* Forms */
input[type="email"],
input[type="password"],
input[type="text"] {
  display: block;
  width: 100%;
  padding: 0.5rem 0.75rem;
  font-size: 1rem;
  border: 1px solid #d1d5db;
  border-radius: 0.375rem;
  background-color: #f3f4f6;
  color: #1f2937;
  transition: all 0.2s;
}

input[type="email"]::placeholder,
input[type="password"]::placeholder,
input[type="text"]::placeholder {
  color: #9ca3af;
}

input[type="email"]:focus,
input[type="password"]:focus,
input[type="text"]:focus {
  outline: 2px solid #6366f1;
  outline-offset: -1px;
  background-color: #ffffff;
}

/* Buttons */
button {
  font-family: inherit;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
}

button[type="submit"] {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.5rem 0.75rem;
  border-radius: 0.375rem;
  background-color: #6366f1;
  color: white;
  font-size: 0.875rem;
  font-weight: 600;
}

button[type="submit"]:hover {
  background-color: #4f46e5;
}

button[type="submit"]:focus {
  outline: 2px solid #6366f1;
  outline-offset: 2px;
}

button[type="submit"]:disabled {
  background-color: #f3f4f6;
  color: #9ca3af;
  cursor: not-allowed;
}

/* Images */
img {
  display: block;
  max-width: 100%;
  height: auto;
}

/* Responsive */
@media (max-width: 1024px) {
  .hidden-md {
    display: none !important;
  }
}

@media (min-width: 640px) {
  .sm\:text-sm {
    font-size: 0.875rem;
  }
}

@media (min-width: 1024px) {
  .flex-none {
    flex: none;
  }

  .w-96 {
    width: 24rem;
  }
}
