.auth-wrapper {
  min-height: calc(100vh - 160px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 16px;
  background-color: #f8fafc;
}

.auth-card {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.01);
  border: 1px solid #e2e8f0;
  width: 100%;
  max-width: 480px;
  overflow: hidden;
}

.auth-tabs {
  display: flex;
  border-bottom: 1px solid #e2e8f0;
  background-color: #f1f5f9;
}

.auth-tab-btn {
  flex: 1;
  padding: 16px;
  font-size: 15px;
  font-weight: 600;
  background: none;
  border: none;
  color: #64748b;
  cursor: pointer;
  transition: all 0.2s ease;
}

.auth-tab-btn.active {
  background: #ffffff;
  color: #0077c8;
  border-bottom: 2px solid #0077c8;
}

.auth-form {
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.auth-form.hidden {
  display: none;
}

.auth-title {
  font-size: 22px;
  font-weight: 700;
  color: #0f172a;
}

.auth-subtitle {
  font-size: 14px;
  color: #64748b;
  margin-top: -10px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: #334155;
}

.form-group input {
  padding: 12px 14px;
  border: 1px solid #cbd5e1;
  border-radius: 6px;
  font-size: 14px;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s ease;
}

.form-group input:focus {
  border-color: #0077c8;
}

.form-row-between {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #475569;
  cursor: pointer;
}

.auth-link {
  color: #0077c8;
  text-decoration: none;
  font-weight: 500;
}

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

.auth-submit-btn {
  width: 100%;
  padding: 14px;
  font-size: 15px;
  margin-top: 6px;
  cursor: pointer;
}

.auth-alert-box {
  margin: 20px 32px 0;
  padding: 12px 16px;
  background-color: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: 6px;
  color: #b91c1c;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.auth-alert-box svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}