/* CSS Variables */
:root {
  --primary-color: #2563eb;
  --primary-hover: #1d4ed8;
  --secondary-color: #64748b;
  --background-color: #0D1B2A;
  --surface-color: #ffffff;
  --text-primary: #1e293b;
  --text-secondary: #64748b;
  --border-color: #e2e8f0;
  --border-radius: 0.5rem;
  --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --spacing-xs: 0.5rem;
  --spacing-sm: 0.75rem;
  --spacing-md: 1rem;
  --spacing-lg: 1.5rem;
  --spacing-xl: 2rem;
  --font-size-sm: 0.875rem;
  --font-size-base: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
}

/* Body styles */
main {
  font-family: system-ui, -apple-system, sans-serif;
  background-color: var(--background-color);
  color: var(--text-primary);
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: var(--spacing-md);
  width: 100%;
  height: 100%;
}

html, body {
  height: 100%;
  width: 100%;
  font-family: system-ui, -apple-system, sans-serif;
  background-color: var(--background-color);
  color: var(--text-primary);
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: var(--spacing-md);
  width: 100%;
  height: 100%;
}

/* Header styles */
header {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: var(--spacing-lg);
  margin-bottom: var(--spacing-xl);
  border-radius: var(--border-radius);
  width: 100%;
}

header img {
  background-color: #FF2E2E;
  height: auto;
  max-height: 8rem;
  width: auto;
  object-fit: contain;

}

/* Form styles */
form {
  background-color: var(--surface-color);
  padding: var(--spacing-xl);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-lg);
  width: 100%;
  max-width: 28rem;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
}

/* Label styles */
label {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xs);
  font-weight: 500;
  color: var(--text-primary);
  font-size: var(--font-size-base);
}

/* Input and select styles */
input,
select {
  padding: var(--spacing-sm) var(--spacing-md);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  font-size: var(--font-size-base);
  background-color: var(--surface-color);
  color: var(--text-primary);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

input:focus,
select:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgb(37 99 235 / 0.1);
}

input::placeholder {
  color: var(--text-secondary);
}

/* Button styles */
button {
  padding: var(--spacing-sm) var(--spacing-lg);
  background-color: var(--primary-color);
  color: white;
  border: none;
  border-radius: var(--border-radius);
  font-size: var(--font-size-base);
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.1s ease;
  margin-top: var(--spacing-sm);
}

button:hover {
  background-color: var(--primary-hover);
  transform: translateY(-1px);
}

button:active {
  transform: translateY(0);
}

button:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgb(37 99 235 / 0.3);
}

/* Responsive design */
@media (max-width: 480px) {
  body {
    padding: var(--spacing-sm);
  }
  
  form {
    padding: var(--spacing-lg);
  }
  
  header {
    padding: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
  }
}
