/**
 * Describe the Problem page styles
 * Simple, mobile-friendly form
 */

.tech-support-main {
  min-height: 70vh;
  padding: 2rem 1rem 4rem;
}

.tech-support-container {
  max-width: 600px;
  margin: 0 auto;
}

.tech-support-back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary-color, #009B4D);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.tech-support-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  border: 1px solid #e8e8e8;
  padding: 2rem 1.5rem;
}

.tech-support-header {
  text-align: center;
  margin-bottom: 2rem;
}

.tech-support-icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, #009B4D, #00796b);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: white;
  font-size: 1.75rem;
}

.tech-support-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark, #1a1a2e);
  margin-bottom: 0.5rem;
}

.tech-support-subtitle {
  color: var(--text-light, #666);
  font-size: 0.95rem;
  line-height: 1.5;
}

.tech-support-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.tech-support-form label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
  color: var(--text-dark, #1a1a2e);
}

.tech-support-form input,
.tech-support-form textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  border: 1px solid #ddd;
  border-radius: 10px;
  font-size: 1rem;
  font-family: inherit;
  background: #fff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  -webkit-appearance: none;
  appearance: none;
}

.tech-support-form input:focus,
.tech-support-form textarea:focus {
  outline: none;
  border-color: var(--primary-color, #009B4D);
  box-shadow: 0 0 0 3px rgba(0, 155, 77, 0.1);
}

.tech-support-form textarea {
  resize: vertical;
  min-height: 120px;
}

.tech-support-form .hint {
  font-size: 0.8rem;
  color: var(--text-light, #666);
  margin-top: 0.4rem;
  margin-bottom: 0;
}

.tech-support-form button[type="submit"] {
  display: block;
  width: 100%;
  text-align: center;
  border: none;
  cursor: pointer;
  padding: 1rem;
}

.tech-support-success {
  display: none;
  text-align: center;
  padding: 2rem 0;
}

.tech-support-success-icon {
  font-size: 3rem;
  color: #009B4D;
  margin-bottom: 1rem;
}

.tech-support-success h2 {
  font-size: 1.3rem;
  color: var(--text-dark, #1a1a2e);
  margin-bottom: 0.5rem;
}

.tech-support-success p {
  color: var(--text-light, #666);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

@media (max-width: 480px) {
  .tech-support-main {
    padding: 1.25rem 0.75rem 3rem;
  }

  .tech-support-card {
    padding: 1.5rem 1.25rem;
    border-radius: 14px;
  }

  .tech-support-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }

  .tech-support-title {
    font-size: 1.3rem;
  }

  .tech-support-form input,
  .tech-support-form textarea {
    font-size: 16px;
    padding: 0.85rem 0.9rem;
  }
}
