.auth-page {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 1rem;
  background: linear-gradient(135deg, #fff7e0, #ffffff);
}

.auth-card {
  width: 100%;
  max-width: 430px;
  background: #ffffff;
  padding: 2rem;
  border-radius: 1.5rem;
  box-shadow: 0 1rem 2.5rem rgba(0, 0, 0, 0.12);
  animation: fadeUp 0.6s ease;
}

.auth-card h1 {
  margin-bottom: 0.5rem;
  font-size: 2rem;
  color: #222;
}

.auth-card p {
  margin-bottom: 1.2rem;
  color: #666;
}

.auth-card form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.auth-card label {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-weight: 600;
  color: #333;
}

.auth-card input {
  padding: 0.9rem 1rem;
  border: 1px solid #ddd;
  border-radius: 0.8rem;
  font-size: 1rem;
  outline: none;
  transition: 0.3s;
}

.auth-card input:focus {
  border-color: #ffbc0d;
  box-shadow: 0 0 0 0.2rem rgba(255, 188, 13, 0.25);
}

.auth-card button {
  margin-top: 0.5rem;
  padding: 0.9rem 1rem;
  border: none;
  border-radius: 0.8rem;
  background: #ffbc0d;
  color: #222;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: 0.3s;
}

.auth-card button:hover {
  background: #f5a400;
  transform: translateY(-2px);
}

.message {
  margin-top: 1rem;
  font-weight: 600;
}

.message.success {
  color: #198754;
}

.message.error {
  color: #dc3545;
}

.auth-link {
  margin-top: 1.5rem;
  text-align: center;
}

.auth-link a {
  color: #d71920;
  font-weight: 700;
  text-decoration: none;
}

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

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(1.5rem);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.google-login-btn {
  display: block;
  margin-top: 1rem;
  padding: 0.9rem 1rem;
  border-radius: 0.8rem;
  text-align: center;
  text-decoration: none;
  background: #ffffff;
  color: #222;
  border: 1px solid #ddd;
  font-weight: 700;
  transition: 0.3s;
}

.google-login-btn:hover {
  background: #f5f5f5;
  transform: translateY(-2px);
}

.profile-page {
  min-height: 80vh;
  padding: 3rem 1rem;
  background: linear-gradient(135deg, #fff7e0, #ffffff);
}

.profile-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.profile-card {
  background: #ffffff;
  padding: 2rem;
  border-radius: 1.5rem;
  box-shadow: 0 1rem 2.5rem rgba(0, 0, 0, 0.12);
}

.profile-card h1,
.profile-card h2 {
  margin-bottom: 1rem;
}

.profile-card form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.profile-card label {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-weight: 600;
}

.profile-card input {
  padding: 0.9rem 1rem;
  border: 1px solid #ddd;
  border-radius: 0.8rem;
  font-size: 1rem;
}

.profile-card button {
  padding: 0.9rem 1rem;
  border: none;
  border-radius: 0.8rem;
  background: #ffbc0d;
  color: #222;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
}

.profile-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1rem;
}

.danger-btn {
  background: #d71920 !important;
  color: #ffffff !important;
}

.message.success {
  color: #198754;
}

.message.error {
  color: #dc3545;
}

@media (max-width: 768px) {
  .profile-grid {
    grid-template-columns: 1fr;
  }
}