* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }

  body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #2e60eb;
    display: flex;
    height: 100vh;
  }

  .container {
    display: flex;
    width: 100%;
    flex-direction: row;
    height: 100vh;
  }

  .form-section {
    width: 50%;
    background: #fff;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .info-section {
    width: 50%;
    background: url('/Assets/IMAGES/Galeria/2.jpeg') no-repeat center center/cover;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }

  .info-overlay {
    background-color: rgba(0, 34, 61, 0.842);
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    max-width: 500px;
  }

  .info-overlay h2 {
    font-size: 2em;
    margin-bottom: 20px;
  }

  .info-overlay p {
    font-size: 1.1em;
  }

  .Title h1 {
    font-size: 24px;
    margin-bottom: 5px;
    color: #09213D;
    text-align: center;
    justify-content: center;
    align-items: baseline;
  }

  .Title h4 {
    color: #666;
    margin-bottom: 10px;
    font-size: 13px;
    text-align: center;
    justify-content: center;
    align-items: baseline;
  }
  .Title p{
    font-size: 13px;
    color: rgb(134, 0, 0);
  }

  form {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }

  .form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
  }

  .form-group {
    display: flex;
    flex-direction: column;
  }

  label, span {
    font-weight: 600;
    margin-bottom: 4px;
    font-size: 14px;
    color: #333;
  }

  input, select, textarea {
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 14px;
  }

  textarea {
    resize: vertical;
    height: 110px;
  }

  .full-width {
    grid-column: span 2;
  }

  button.button {
    background-color: #09213D;
    color: #fff;
    padding: 10px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 15px;
    transition: background 0.3s ease;
  }

  button.button:hover {
    background-color: #12406c;
  }

  @media (max-width: 768px) {
    .container {
      flex-direction: column;
    }

    .form-section, .info-section {
      width: 100%;
      height: auto;
    }

    .form-grid {
      grid-template-columns: 1fr;
    }

    .full-width {
      grid-column: span 1;
    }

    .info-overlay {
      padding: 20px;
    }
  }