/* ================= RESET ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  font-family: Arial, Helvetica, sans-serif;
  background: #020817;
  color: #ffffff;
  min-height: 100%;
  overflow-x: hidden;
}

/* ================= HEADER / LOGO ================= */
.header {
  padding: 30px 0;
  display: flex;
  justify-content: center;
}

.logo-glow {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,230,168,0.4), transparent 60%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 40px rgba(0,230,168,0.6);
}

.logo-glow img {
  width: 100px;
  height: auto;
}

/* ================= HERO ================= */
.hero {
  position: relative;
  min-height: 70vh;
  background-image: url("../assets/hero.jpg");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 16px;
  text-align: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(2, 8, 23, 0.75);
}

.hero-content {
  position: relative;
  max-width: 600px;
  width: 100%;
}

.hero h1 {
  font-size: 36px;
  margin-bottom: 15px;
}

.hero p {
  font-size: 18px;
  margin-bottom: 30px;
  line-height: 1.5;
}

/* ================= BUTTONS ================= */
.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  padding: 14px 26px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
}

.btn.primary {
  background: #00e6a8;
  color: #020817;
}

.btn.secondary {
  border: 2px solid #00e6a8;
  color: #00e6a8;
}

.btn:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

/* ================= FOOTER ================= */
footer {
  padding: 30px 16px;
  text-align: center;
  background: #020817;
}

.footer-links {
  margin-bottom: 12px;
}

.footer-links a {
  color: #00e6a8;
  text-decoration: none;
  margin: 0 8px;
  display: inline-block;
  font-size: 14px;
}

footer p {
  font-size: 13px;
  color: #aaa;
}

/* ================= MOBILE (SMALLEST PHONES) ================= */
@media (max-width: 420px) {
  .logo-glow {
    width: 120px;
    height: 120px;
  }

  .logo-glow img {
    width: 80px;
  }

  .hero h1 {
    font-size: 26px;
  }

  .hero p {
    font-size: 15px;
  }

  .btn {
    width: 100%;
    max-width: 260px;
  }
}
/* ================= FORM PAGES ================= */
.form-page {
  min-height: 70vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.form-box {
  width: 100%;
  max-width: 420px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(14px);
  border-radius: 20px;
  padding: 30px 26px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
  animation: slideUp 0.6s ease;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.form-box h2 {
  text-align: center;
  margin-bottom: 8px;
}

.form-box p {
  text-align: center;
  font-size: 14px;
  color: #ccc;
  margin-bottom: 25px;
}

/* ================= INPUTS ================= */
.form-box input {
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  border: none;
  margin-bottom: 16px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 14px;
  outline: none;
  transition: all 0.25s ease;
}

.form-box input::placeholder {
  color: #bbb;
}

.form-box input:focus {
  background: rgba(255, 255, 255, 0.18);
  box-shadow: 0 0 0 2px rgba(0, 230, 168, 0.6);
}

/* ================= FORM BUTTON ================= */
.form-box button {
  width: 100%;
  margin-top: 10px;
}

/* ================= LINKS ================= */
.form-links {
  margin-top: 18px;
  text-align: center;
}

.form-links a {
  color: #00e6a8;
  text-decoration: none;
  font-size: 14px;
}

/* ================= SMALL PHONES ================= */
@media (max-width: 360px) {
  .form-box {
    padding: 22px 18px;
  }
}
/* ================= GOOGLE SIGNUP ================= */
.divider {
  display: flex;
  align-items: center;
  margin: 22px 0;
  color: #aaa;
  font-size: 13px;
}

.divider::before,
.divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
}

.divider span {
  margin: 0 10px;
}

.google-btn {
  width: 100%;
  padding: 13px;
  border-radius: 14px;
  background: #ffffff;
  color: #222;
  font-weight: 600;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.google-btn img {
  width: 18px;
  height: 18px;
}

.google-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}
