@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap");

* {
  font-family: "Poppins", sans-serif;
}

body {
  background-color: #f8f9fa;
}

.auth-container {
  background: #ffffff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.input-field {
  transition: all 0.2s ease;
  border: 1px solid #e2e8f0;
}

.input-field:focus {
  outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.input-field:hover {
  border-color: #cbd5e1;
}

.btn-primary {
  background-color: #2563eb;
  transition: all 0.2s ease;
}

.btn-primary:hover {
  background-color: #1d4ed8;
}

.btn-primary:active {
  background-color: #1e40af;
}

.btn-google {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  transition: all 0.2s ease;
}

.btn-google:hover {
  background: #f8f9fa;
  border-color: #cbd5e1;
}

.tab-button {
  position: relative;
  color: #64748b;
  transition: all 0.2s ease;
}

.tab-button:hover {
  color: #334155;
}

.tab-button.active {
  color: #2563eb;
  font-weight: 600;
}

.tab-button.active::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 2px;
  background-color: #2563eb;
}

.radio-card {
  border: 2px solid #e2e8f0;
  transition: all 0.2s ease;
  cursor: pointer;
}

.radio-card:hover {
  border-color: #cbd5e1;
  background-color: #fafafa;
}

.radio-card.selected {
  border-color: #2563eb;
  background-color: #eff6ff;
}

.logo-container {
  width: 40px;
  height: 40px;
  background-color: #2563eb;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Mobile optimizations */
@media (max-width: 640px) {
  .auth-container {
    box-shadow: none;
    border-radius: 0;
  }

  body {
    background-color: #ffffff;
  }
}

/* Desktop logo size */
@media (min-width: 1024px) {
  .logo-container {
    width: 48px;
    height: 48px;
  }
}
