/* Dev Auth Page Styles */

.dev-auth-container {
  display: flex;
  min-height: 100vh;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1f2937 0%, #374151 50%, #000000 100%);
  padding: 1.5rem;
}

.dev-auth-content {
  width: 100%;
  max-width: 28rem;
}

/* Logo Section */
.logo-container {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
  animation: fadeInDown 0.8s ease-out;
}

.logo {
  width: 8rem;
  height: 8rem;
  filter: drop-shadow(0 10px 8px rgb(0 0 0 / 0.04))
    drop-shadow(0 4px 3px rgb(0 0 0 / 0.1));
}

/* Form Container */
.form-container {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.2);
  animation: fadeInUp 0.8s ease-out;
}

/* Form Styles */
.form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.input-container {
  position: relative;
}

.input-field {
  width: 100%;
  border-radius: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.2);
  padding: 0.75rem 1rem;
  text-align: center;
  color: white;
  backdrop-filter: blur(4px);
  transition: all 0.3s ease;
  font-size: 1rem;
}

.input-field::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.input-field:focus {
  outline: none;
  border-color: transparent;
  box-shadow: 0 0 0 2px #4ade80;
}

.error-message {
  position: absolute;
  bottom: -1.5rem;
  left: 0;
  color: #fca5a5;
  font-size: 0.875rem;
  animation: slideIn 0.3s ease-out;
}

/* Error Container */
.error-container {
  border-radius: 0.5rem;
  border: 1px solid rgba(239, 68, 68, 0.3);
  background: rgba(239, 68, 68, 0.2);
  padding: 0.75rem;
  text-align: center;
  font-size: 0.875rem;
  color: #fca5a5;
  animation: slideIn 0.3s ease-out;
}

/* Button Styles */
.submit-button {
  width: 100%;
  transform: scale(1);
  border-radius: 0.5rem;
  background: linear-gradient(to right, #22c55e, #16a34a);
  padding: 0.75rem 1.5rem;
  font-weight: 500;
  color: white;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.submit-button:hover:not(:disabled) {
  transform: scale(1.05);
  background: linear-gradient(to right, #16a34a, #15803d);
}

.submit-button:focus {
  outline: none;
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.5);
}

.submit-button:disabled {
  transform: scale(1);
  cursor: not-allowed;
  background: linear-gradient(to right, #6b7280, #4b5563);
}

/* Loading Spinner */
.loading-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.spinner {
  height: 1.25rem;
  width: 1.25rem;
  animation: spin 1s linear infinite;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: white;
}

/* Disclaimer */
.disclaimer {
  margin-top: 2rem;
  text-align: center;
  animation: fadeInUp 0.8s ease-out;
  animation-delay: 0.3s;
  animation-fill-mode: both;
}

.disclaimer-text {
  font-size: 0.875rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
}

/* Animations */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(-10px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* Responsive Design */
@media (max-width: 640px) {
  .dev-auth-container {
    padding: 1rem;
  }

  .form-container {
    padding: 1.5rem;
  }

  .logo {
    width: 6rem;
    height: 6rem;
  }
}

