.form {
    box-shadow: 0.2rem 0.2rem 1.5rem rgba(0, 0, 0, 0.4);
  }
  #form input.error,
  #form textarea.error,
  #form select.error {
    border-color: var(--clRed);
    box-shadow: 0 0 0 0.2rem rgba(212, 1, 1, 0.2);
  }
  #form label {
    cursor: inherit;
  }
  #form small {
    display: none;
  }
  .code section {
    display: flex;
    align-items: center;
    gap: 1.5rem;
  }
  .code section img {
    max-width: 15rem;
  }
  .code section button {
    border: 0;
    background: transparent;
    color: var(--clRed);
  }
  .code section button:hover {
    transform: scale(1.5);
  }
  #send button {
    background: var(--clRed);
    color: var(--clWhite);
    border-radius: 5rem;
    padding: 0.5rem 1.5rem;
    border: 0;
  }
  #send button:hover {
    background: var(--clRedHover);
  }
  .map {
    border: 0.1rem solid var(--clGray);
    cursor: pointer;
    background: var(--clWhite);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .map * {
    pointer-events: none;
    width: 100%;
  }
  
  .grid_address {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 3rem 10rem;
  }
  
  .black {
    opacity: 0;
    visibility: hidden;
    max-height: 0;
    transition: all 0.5s ease-in-out;
  }
  .black.active {
    position: fixed;
    top: 0;
    left: 0;
    opacity: 1;
    visibility: visible;
    max-height: max-content;
    background: rgba(0, 0, 0, 0.7);
    width: 100%;
    height: 100%;
    z-index: 99;
    display: flex;
    align-items: end;
    justify-content: center;
    flex-direction: column;
    padding: 0 1.5rem;
  }
  .black .step_relative {
    max-width: 99.1rem;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 1.5rem;
  }
  .black.active .large_map,
  .black.active .large_map figure {
    width: 100%;
  }
  .black.active .large_map img {
    background: var(--clWhite);
  }
  .close_button button {
    background: var(--clRed);
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    border: none;
    color: var(--clWhite);
    font-size: var(--fontSuperHead);
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .form-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
  }
  .form-submit .btn-register {
    background: var(--clRed);
    padding: 0.5rem 2rem;
    border-radius: 5rem;
    color: var(--clWhite);
    border: 1px solid var(--clRed);
  }
  
  @media (max-width: 991px) {
    .grid_address {
      grid-template-columns: 1fr;
    }
  }
  