.rights-request-form-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  font-family: Arial, sans-serif;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.form-title {
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: #333;
  border-bottom: 2px solid #ddd;
  padding-bottom: 15px;
}

.form-instructions {
  background: #f8f9fa;
  padding: 15px;
  border-radius: 5px;
  margin-bottom: 25px;
  font-size: 14px;
  line-height: 1.5;
}

.form-section {
  margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.form-section:last-child {
  border-bottom: none;
}

.form-section h3 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 15px;
  color: #333;
  border-bottom: 1px solid #ddd;
  padding-bottom: 8px;
}

.form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 15px;
}

.form-group {
  flex: 1;
  margin-bottom: 15px;
}

.form-group label {
  display: block;
  font-weight: bold;
  margin-bottom: 5px;
  color: #333;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
  box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #007cba;
  box-shadow: 0 0 5px rgba(0, 124, 186, 0.3);
}

.uppercase {
  text-transform: uppercase;
}

.date-inputs {
  display: flex;
  gap: 10px;
}

.date-inputs input {
  flex: 1;
  text-align: center;
}

.radio-group {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.radio-group label {
  display: flex;
  align-items: center;
  font-weight: normal;
  cursor: pointer;
}

.radio-group input[type="radio"] {
  margin-right: 8px;
  width: auto;
}

.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 10px;
  margin-top: 10px;
}

.checkbox-grid label {
  display: flex;
  align-items: center;
  font-weight: normal;
  cursor: pointer;
  font-size: 12px;
}

.checkbox-grid input[type="checkbox"] {
  margin-right: 8px;
  width: auto;
}

.rights-checkboxes {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.rights-checkboxes label {
  display: flex;
  align-items: center;
  font-weight: normal;
  cursor: pointer;
  font-size: 14px;
}

.rights-checkboxes input[type="checkbox"] {
  margin-right: 10px;
  width: auto;
}

.description {
  font-size: 14px;
  color: #666;
  margin-bottom: 10px;
  font-style: italic;
}

.signature-section {
  background: #f8f9fa;
  padding: 20px;
  border-radius: 5px;
}

.terms-text {
  font-size: 14px;
  color: #007cba;
  margin-top: 10px;
}

.terms-text a {
  color: #007cba;
  text-decoration: underline;
}

.terms-text a:hover {
  color: #005a87;
}

.form-footer {
  background: #f0f0f0;
  padding: 15px;
  border-radius: 5px;
  text-align: center;
  margin-bottom: 20px;
}

.form-submit {
  text-align: center;
  margin-top: 30px;
}

.submit-btn {
  background: #007cba;
  color: white;
  padding: 15px 40px;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s;
}

.submit-btn:hover {
  background: #005a87;
}

.submit-btn:disabled {
  background: #ccc;
  cursor: not-allowed;
}

.form-loading {
  text-align: center;
  padding: 20px;
  background: #e7f3ff;
  border-radius: 5px;
  margin-top: 20px;
}

.form-messages {
  margin-top: 20px;
}

.form-messages .success {
  background: #d4edda;
  color: #155724;
  padding: 15px;
  border-radius: 5px;
  border: 1px solid #c3e6cb;
}

.form-messages .error {
  background: #f8d7da;
  color: #721c24;
  padding: 15px;
  border-radius: 5px;
  border: 1px solid #f5c6cb;
}

.note {
  font-size: 12px;
  color: #666;
  font-style: italic;
  margin-top: 5px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .rights-request-form-container {
    padding: 15px;
    margin: 10px;
  }

  .form-row {
    flex-direction: column;
    gap: 0;
  }

  .radio-group {
    flex-direction: column;
    gap: 10px;
  }

  .checkbox-grid {
    grid-template-columns: 1fr;
  }

  .date-inputs {
    flex-direction: column;
  }

  .form-title {
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .rights-request-form-container {
    padding: 10px;
    margin: 5px;
  }

  .submit-btn {
    width: 100%;
    padding: 12px;
  }

  .form-title {
    font-size: 18px;
  }
}
