.auth-page {
  min-height: 100vh;
  background:
linear-gradient(
  180deg,
  #f8fafc 0%,
  #eef2ff 100%
);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}
.logo-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 14px;
}

.logo-icon {
  width: 38px;
  height: 38px;
  border-radius: 12px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #2563eb;
  color: white;
  font-weight: 700;
}

.logo {
  font-size: 28px;
  font-weight: 700;
  margin: 0;
}

.auth-card {
  width: 100%;
  max-width: 460px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 24px;
  padding: 36px;
  box-shadow:
    0 10px 25px rgba(15, 23, 42, 0.05),
    0 4px 10px rgba(15, 23, 42, 0.03);
}

.auth-header {
  text-align: center;
  margin-bottom: 25px;
}

.logo {
  margin-bottom: 10px;
  font-size: 32px;
}

.auth-header h2 {
  margin-bottom: 8px;
}

.auth-header p {
  color: #64748b;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
}

.form-group input {
  width: 100%;
  height: 52px;
  padding: 0 16px;

  background: #f8fafc;

  border: 1px solid #e2e8f0;
  border-radius: 14px;

  outline: none;

  transition: all .2s ease;
}
.form-group input:focus {
  background: white;

  border-color: #2563eb;

  box-shadow:
    0 0 0 4px rgba(37,99,235,.12);
}
.primary-btn {
  width: 100%;
  height: 52px;

  border: none;
  border-radius: 14px;

  background: #2563eb;
  color: white;

  font-weight: 600;
  font-size: 15px;

  cursor: pointer;

  transition: all .2s ease;
}
.primary-btn:hover {
  background: #1d4ed8;
  transform: translateY(-1px);
}
.google-btn {
  width: 100%;
  height: 52px;

  border: 1px solid #e2e8f0;
  border-radius: 14px;

  background: white;

  font-weight: 600;

  cursor: pointer;

  transition: all .2s ease;
}

.google-btn:hover {
  background: #f8fafc;
}
.divider {
  position: relative;
  text-align: center;
  margin: 24px 0;
}
.divider::before {
  content: "";

  position: absolute;
  left: 0;
  right: 0;
  top: 50%;

  height: 1px;

  background: #e2e8f0;
}
.divider span {
  position: relative;

  background: white;

  padding: 0 12px;

  color: #94a3b8;
  font-size: 14px;
}
.password-wrapper {
  position: relative;
}

.password-toggle {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);

  border: none;
  background: transparent;

  cursor: pointer;

  color: #64748b;
}
.primary-btn {
  width: 100%;
  height: 50px;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  background: #2563eb;
  color: white;
  font-weight: 600;
}
.logo-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 16px;
}

.logo-image {
  width: 42px;
  height: 42px;
  object-fit: contain;
  flex-shrink: 0;
}

.logo {
  margin: 0;
  font-size: 28px;
  font-weight: 700;
  color: #0f172a;
}

.google-btn {
  width: 100%;
  height: 50px;
  border: 1px solid #dbe2ea;
  border-radius: 12px;
  background: white;
  cursor: pointer;
  font-weight: 600;
}

.divider {
  text-align: center;
  margin: 20px 0;
  color: #94a3b8;
}

.auth-footer {
  margin-top: 20px;
  text-align: center;
}


