/* ========================================
   FORM STYLES
   Signup forms, email inputs, form rows
   ======================================== */

/* ==================== SIGNUP SECTION ==================== */

/* Signup Section Wrapper - for proper centering */
.signup-section-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.signup-section-download {
  padding: 30px;
  border-radius: 20px;
  margin: 30px 0;
}

.signup-title {
  color: #2c3e50;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 10px;
  text-align: center;
  text-shadow: none;
}

.signup-subtitle {
  color: #6c757d;
  font-size: 1rem;
  margin-bottom: 25px;
  text-align: center;
}

/* Signup Form */
.signup-form {
  max-width: 500px;
  margin: 0 auto;
}

.form-row {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
}

.form-row-small {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
}

.email-input {
  flex: 1;
  padding: 15px 20px;
  border: 2px solid #dee2e6;
  border-radius: 12px;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.email-input:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.name-input, .city-input {
  flex: 1;
  padding: 12px 16px;
  border: 2px solid #dee2e6;
  border-radius: 10px;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.name-input:focus, .city-input:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.signup-btn {
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  color: white;
  border: none;
  padding: 15px 30px;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.signup-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.6s ease;
}

.signup-btn:hover::before {
  left: 100%;
}

.signup-btn:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

/* Signup Benefits */
.signup-benefits {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  margin-top: 20px;
}

.signup-benefits .benefit {
  flex: 1;
  text-align: center;
  color: #6c757d;
  font-size: 0.9rem;
  font-weight: 500;
}

.signup-benefits .benefit i {
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
  margin-right: 8px;
  font-size: 1.2em;
}

/* Final Signup Form Styles */
.final-signup-section {
  margin-top: 30px;
}

.final-signup-form {
  max-width: 400px;
  margin: 0 auto 20px auto;
}

.final-form-row {
  display: flex;
  gap: 15px;
}

.final-email-input {
  flex: 1;
  padding: 15px 20px;
  border: 2px solid #dee2e6;
  border-radius: 12px;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.final-email-input:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.final-signup-btn {
  background: linear-gradient(135deg, #e74c3c 0%, #e74c3c 100%);
  color: white;
  border: none;
  padding: 15px 25px;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.final-signup-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.6s ease;
}

.final-signup-btn:hover::before {
  left: 100%;
}

.final-signup-btn:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 20px rgba(231, 76, 60, 0.3);
}
