:root {
  --font-main: 'Outfit', sans-serif;
  --color-bg: #f8f9fa;
  --color-text: #1a1a1a;
  --color-text-light: #666;
  --color-primary: #00d1b2; /* Vivid green-cyan */
  --color-primary-hover: #00c4a7;
  --color-white: #ffffff;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-main);
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  cursor: pointer;
  border: none;
  font-family: inherit;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Navbar */
.navbar {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-text);
}

/* Hero Section */
.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 80px 0;
  gap: 40px;
  min-height: 80vh;
}

.hero-content {
  flex: 1;
  max-width: 600px;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #1a1a1a 0%, #4a4a4a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 20px;
}

.hero-description {
  font-size: 1.125rem;
  color: var(--color-text-light);
  margin-bottom: 40px;
  max-width: 480px;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  background-color: var(--color-primary);
  color: var(--color-white);
  padding: 16px 32px;
  font-size: 1.125rem;
  font-weight: 600;
  border-radius: 50px;
  transition: transform 0.2s ease, background-color 0.2s ease;
  box-shadow: 0 4px 14px rgba(0, 209, 178, 0.4);
}

.cta-button:hover {
  background-color: var(--color-primary-hover);
  transform: translateY(-2px);
}

.hero-image-container {
  flex: 1;
  display: flex;
  justify-content: center;
  position: relative;
}

.hero-image {
  max-width: 100%;
  height: auto;
  max-height: 600px;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.1));
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-20px);
  }

  100% {
    transform: translateY(0px);
  }
}

/* Footer */
.footer {
  text-align: center;
  padding: 40px 0;
  color: var(--color-text-light);
  font-size: 0.875rem;
  border-top: 1px solid #eee;
  margin-top: auto;
}

/* Responsive */
@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    text-align: center;
    padding: 40px 0;
  }

  .hero-content {
    margin: 0 auto;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-description {
    margin: 0 auto 30px;
  }
}

/* Account Deletion Page Styles */
.delete-card {
  background-color: var(--color-white);
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  max-width: 500px;
  width: 100%;
  margin: 40px auto;
  text-align: left;
}

.form-group {
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.form-group label {
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 0.95rem;
  color: var(--color-text);
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.2s ease;
  background-color: #fff;
  color: #000;
}

.form-control:focus {
  outline: none;
  border-color: var(--color-primary);
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 24px;
  text-align: left;
}

.form-checkbox input {
  margin-top: 4px;
  cursor: pointer;
}

.form-checkbox label {
  font-size: 0.9rem;
  color: var(--color-text-light);
  cursor: pointer;
}

.error-message {
  color: #ff3860;
  margin-bottom: 16px;
  font-size: 0.9rem;
  font-weight: 600;
}

.success-message {
  color: #23d160;
  font-size: 1.1rem;
  font-weight: 600;
  text-align: center;
  padding: 20px 0;
}
