@charset "UTF-8";
/* ============================================
   🌟 Investor Page Styling
   ============================================ */

/* Container */
.investors-container {
  max-width: 1000px;
  margin: 80px auto;
  padding: 30px;
  background: var(--white);
  color: var(--black);
  border-radius: 16px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

/* Page Title */
.investors-container h1 {
  font-size: 36px;
  color: var(--gold);
  text-align: center;
  margin-bottom: 30px;
}

/* Sections */
.investors-section {
  margin-bottom: 50px;
}

.investors-section h2 {
  font-size: 24px;
  color: var(--gold);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.investors-section p,
.investors-section ul {
  font-size: 16px;
  line-height: 1.7;
}

.investors-section ul {
  padding-left: 20px;
  list-style: disc;
}

/* Contract Box */
.contract-box {
  background: #f4f4f4;
  border-left: 5px solid var(--gold);
  padding: 15px;
  font-family: monospace;
  font-size: 15px;
  border-radius: 8px;
  word-break: break-word;
  margin-top: 12px;
}

/* Button Group */
.btn-group {
  margin-top: 20px;
}

.btn-group a {
  display: inline-block;
  margin: 8px 8px 0 0;
  padding: 10px 16px;
  background: var(--gold);
  color: var(--black);
  border-radius: 6px;
  font-weight: bold;
  font-size: 15px;
  text-decoration: none;
  transition: background 0.3s;
}

.btn-group a:hover {
  background: #e6b800;
}

/* Investor Form */
.investor-form {
  background: #fafafa;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 0 8px rgba(0,0,0,0.1);
  box-sizing: border-box;
}



.investor-form .form-group {
  margin-bottom: 18px;
}

.investor-form label {
  display: block;
  font-weight: bold;
  margin-bottom: 6px;
  font-size: 15px;
}

.investor-form input {
  width: 100%;
  padding: 12px 14px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 16px;
  box-sizing: border-box;
}



/* Submit Button */
.investor-form button {
  margin-top: 12px;
  background: var(--gold);
  color: var(--black);
  border: none;
  padding: 12px 20px;
  font-size: 16px;
  font-weight: bold;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s;
}

.investor-form button:hover {
  background: #e6b800;
}

/* Error and Success Messages */
.error-text {
  color: red;
  font-size: 0.9rem;
  margin-top: 5px;
}

.success-text {
  color: green;
  font-weight: bold;
  margin-top: 10px;
}

/* Re-Send Access Key Section */
#resendContainer {
  margin-top: 20px;
}

#resendContainer button {
  background-color: #f0ad4e;
  border: none;
  padding: 10px 16px;
  border-radius: 6px;
  cursor: pointer;
  color: #000;
  font-weight: bold;
  transition: background 0.3s;
}

#resendContainer button:hover {
  background-color: #ec971f;
}

@media (max-width: 600px) {
  .investor-form {
    padding: 20px; /* Slightly tighter but still enough breathing room */
  }
}
@media (max-width: 600px) {
  .investors-container {
    margin: 40px 10px;
    padding: 20px;
  }
}
