/* Base styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'SF Pro Display', 'Inter', system-ui, sans-serif;
}

body {
  background-color: #f5f5f7;
}

/* Auth container */
.auth-container {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.auth-card {
  width: 100%;
  max-width: 420px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06), 
              0 1px 3px rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(209, 213, 219, 0.3);
}

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

.mb-8 {
  margin-bottom: 2rem;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

h1 {
  font-size: 1.875rem;
  font-weight: bold;
}

.text-gray-600 {
  color: #6B7280;
}

/* Form styles */
.space-y-4 > * {
  margin-bottom: 1rem;
}

label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: #374151;
  margin-bottom: 0.25rem;
}

.auth-input {
  width: 100%;
  font-size: 16px;
  padding: 12px 16px;
  border-radius: 10px;
  border: 1px solid rgba(209, 213, 219, 0.5);
  background-color: rgba(249, 250, 251, 0.8);
  transition: all 0.2s ease;
  margin-bottom: 1rem;
}

.auth-input:focus {
  outline: none;
  border-color: #0066CC;
  box-shadow: 0 0 0 2px rgba(0, 102, 204, 0.2);
}

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

.text-gray-500 {
  color: #6B7280;
}

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

.flex {
  display: flex;
}

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

input[type="checkbox"] {
  height: 1rem;
  width: 1rem;
  color: #2563EB;
}

.ml-2 {
  margin-left: 0.5rem;
}

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

.text-blue-600 {
  color: #0066CC;
}

.text-blue-600:hover {
  color: #004999;
  text-decoration: underline;
}

.auth-button {
  width: 100%;
  padding: 12px 24px;
  background-color: #0066CC;
  color: white;
  border: none;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.auth-button:hover {
  background-color: #004999;
  transform: translateY(-1px);
}

.auth-button:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

/* Divider */
.auth-divider {
  display: flex;
  align-items: center;
  margin: 1.5rem 0;
}

.auth-divider::before,
.auth-divider::after {
  content: "";
  flex: 1;
  border-bottom: 1px solid rgba(209, 213, 219, 0.5);
}

.auth-divider span {
  padding: 0 1rem;
  color: #6B7280;
  font-size: 14px;
}

/* Social buttons */
.social-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 12px 24px;
  border: 1px solid rgba(209, 213, 219, 0.5);
  border-radius: 10px;
  background-color: white;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.2s ease;
  margin-bottom: 1rem;
}

.social-button:hover {
  background-color: #f9fafb;
}

.w-5 {
  width: 1.25rem;
}

.h-5 {
  height: 1.25rem;
}

.mr-2 {
  margin-right: 0.5rem;
}

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

.animate-fade-in {
  animation: fadeIn 0.5s ease-out;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-slide-up {
  animation: slideUp 0.5s ease-out;
}

/* Links */
.auth-link {
  color: #0066CC;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s ease;
}

.auth-link:hover {
  color: #004999;
  text-decoration: underline;
}

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

/* Loading spinner */
.animate-spin {
  animation: spin 1s linear infinite;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.mb-3.field-signupform-gender {
  width: 100%;
}
div#signupform-gender{
  display: flex;
  justify-content: space-around;
}
.form-check {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}