.auth-card {
  width: 380px;
  margin: 60px auto;
  padding: 30px;
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  text-align: center;
  font-family: "Inter", sans-serif;
}

.auth-logo img {
  width: 110px;
  margin-bottom: 15px;
}

.auth-form h2 {
  margin-bottom: 20px;
  font-size: 22px;
  font-weight: 600;
}

.input-group {
  text-align: left;
  margin-bottom: 15px;
}

.input-group label {
  display: block;
  font-size: 14px;
  margin-bottom: 4px;
  color: #222;
}

.input-group input {
  width: 100%;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 14px;
}

.btn.full {
  width: 100%;
}

.btn.primary {
  background: #3867d6;
  color: #fff;
  padding: 12px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  font-size: 15px;
  margin-top: 5px;
}

.btn.primary:hover {
  background: #2951b5;
}

.auth-links {
  display: flex;
  justify-content: space-between;
  margin: 15px 0;
}

.auth-links a {
  font-size: 14px;
  color: #3867d6;
  text-decoration: none;
}

.auth-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 18px 0;
  color: #aaa;
  font-size: 13px;
}

.auth-divider::before,
.auth-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #ddd;
  margin: 0 10px;
}

.social-buttons .btn {
  margin-top: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 10px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
}

.btn.google {
  border: 1px solid #d8d8d8;
  background: #fff;
}

.btn.facebook {
  background: #1877f2;
  color: #fff;
}
.btn.guest {
  background: #f0f0f0;
  border: 1px solid #ccc;
  color: #333;
}
.btn.guest img {
  width: 18px;
}
