.send-mrt {
  padding: 40px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.mrt--content {
  display: flex;
  gap: 30px;
  margin-top: 20px;
}

.info {
  flex: 1;
  background: #f8f9fa;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.info h5 {
  color: #e74c3c;
  margin-top: 15px;
  margin-bottom: 10px;
}

.form--contentn {
  flex: 1;
  background: white;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.form--contentn h4 {
  margin-top: 0;
  margin-bottom: 20px;
  color: #2c3e50;
  font-size: 1.3em;
  border-bottom: 2px solid var(--accent);
  padding-bottom: 10px;
}

form#mrtForm {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

form#mrtForm label {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

form#mrtForm label span {
  font-weight: 600;
  color: #2c3e50;
  font-size: 0.95em;
}

form#mrtForm input,
form#mrtForm textarea {
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
  transition: border-color 0.3s;
}

form#mrtForm input:focus,
form#mrtForm textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 2px rgba(52, 152, 219, 0.2);
}

form#mrtForm textarea {
  min-height: 100px;
  resize: vertical;
}

form#mrtForm button {
  background: var(--accent);
  color: white;
  border: none;
  padding: 14px 20px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  margin-top: 10px;
  transition: background 0.3s;
}

form#mrtForm button:hover {
  background: var(--accent);
}

/* Responsive styles */
@media (max-width: 768px) {
  .mrt--content {
    flex-direction: column;
  }
  
  .send-mrt {
    padding: 20px 15px;
  }
}