#cabecera {
    width: 100%;
    height: 500px;
  }
  #video {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: auto;
    z-index: -10;
    visibility: visible;
  }
  h2 {
    color: white;
    text-shadow: 4px 4px 4px #333;
    text-align: center;
    margin-top: 200px;
  }
  body {
    margin: 0;
    background-color: black;
  }
  .form-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
  }
  .form-container {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    padding: 2rem;
  }
  .form-container h1 {
    color: #333;
    text-align: center;
    margin-bottom: 1rem;
  }
  .form-description {
    text-align: center;
    color: #666;
    margin-bottom: 2rem;
  }
  .form-section {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eee;
  }
  .form-section h2 {
    color: #444;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }
  .form-group {
    margin-bottom: 1.5rem;
  }
  .form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #555;
    font-weight: 500;
  }
  .form-group input,
  .form-group select,
  .form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
  }
  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus {
    border-color: #007bff;
    outline: none;
  }
  .checkbox-group {
    display: flex;
    gap: 2rem;
  }
  .checkbox-group input[type="checkbox"] {
    width: auto;
    margin-right: 0.5rem;
  }
  .checkbox-group label {
    display: inline;
  }
  .form-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
  }
  .submit-btn,
  .reset-btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  .submit-btn {
    background-color: #007bff;
    color: white;
  }
  .submit-btn:hover {
    background-color: #0056b3;
  }
  .reset-btn {
    background-color: #6c757d;
    color: white;
  }
  .reset-btn:hover {
    background-color: #545b62;
  }
  @media (max-width: 768px) {
    .form-page {
      padding: 1rem;
    }
    .form-container {
      padding: 1rem;
    }
    .form-actions {
      flex-direction: column;
    }
    .submit-btn,
    .reset-btn {
      width: 100%;
    }
  } 