/* Import Modern Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700&family=Montserrat:wght@500;700&display=swap');

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Nunito', sans-serif;
}

body {
  background: linear-gradient(135deg, #ff4b6e, #2c5364);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

/* Welcome Page */
.welcome-container {
  text-align: center;
  max-width: 350px;
}
.welcome-container h1 {
  font-size: 30px;
  margin-bottom: 12px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
}
.welcome-container p {
  margin-bottom: 25px;
  font-size: 15px;
  opacity: 0.9;
}
.auth-buttons .btn {
  display: block;
  margin: 10px 0;
  padding: 12px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  letter-spacing: 0.5px;
}
.btn.primary {
  background: #fff;
  color: #ff4b6e;
}
.btn.secondary {
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
}

/* Form Pages */
.form-container {
  background: rgba(0, 0, 0, 0.8);
  padding: 30px;
  border-radius: 20px;
  width: 90%;
  max-width: 400px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}
.form-container h2 {
  margin-bottom: 20px;
  font-size: 24px;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
}
.form-step {
  margin-bottom: 18px;
  text-align: left;
}
.form-step label {
  display: block;
  margin-bottom: 6px;
  font-size: 14px;
  font-weight: 600;
}
.form-step input,
.form-step select {
  width: 100%;
  padding: 12px;
  border-radius: 12px;
  border: none;
  outline: none;
  font-size: 15px;
  font-family: 'Nunito', sans-serif;
}
.btn.primary {
  background: #ff4b6e;
  color: #fff;
  border: none;
  padding: 12px;
  width: 100%;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}
.btn.primary:hover {
  background: #ff1f4e;
}

.switch-link {
  margin-top: 15px;
  font-size: 14px;
}
.switch-link a {
  color: #ff4b6e;
  font-weight: 700;
}

/* Dashboard Match Cards */
.match-card {
  background: rgba(0, 0, 0, 0.85);
  padding: 25px;
  border-radius: 18px;
  text-align: center;
  margin: 20px auto;
  max-width: 360px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.35);
}
.match-card h3 {
  margin-bottom: 10px;
  font-size: 22px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
}
.match-card p {
  margin: 5px 0;
  font-size: 14px;
  opacity: 0.9;
}
.match-actions {
  margin-top: 18px;
  display: flex;
  justify-content: space-around;
}
.match-actions button {
  padding: 12px 20px;
  border: none;
  border-radius: 25px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}
.match-actions .like {
  background: #ff4b6e;
  color: #fff;
}
.match-actions .skip {
  background: #e0e0e0;
  color: #333;
}
.match-actions .like:hover {
  background: #ff1f4e;
}
.match-actions .skip:hover {
  background: #d5d5d5;
}

/* Mobile Responsive */
@media (max-width: 480px) {
  .welcome-container h1 {
    font-size: 26px;
  }
  .form-container {
    padding: 22px;
  }
  .match-card {
    width: 95%;
  }
}
