.formulario-panama-container {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  padding: 20px;
  border-radius: 8px;
  gap: 50px;
  font-family: Helvetica;
  max-width: 900px;
  margin: 0 auto;
}
.contenedor-icono-form {
  grid-column: 1/5;
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}
.formulario-panama-header {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-row: 4;
  align-items: flex-start;
  margin-bottom: 20px;
  font-size: 24px;
  gap: 30px;
}
.apartado-formulario-panama {
  grid-column: 1/3;
  grid-row: 2;
}
.info-formulario-panama {
  grid-column: 1/3;
  grid-row: 3;
}
.apartado-formulario-panama h2{
  color: #0070B2;
  font-family: Helvetica;
  font-size: 50px;
  font-style: normal;
  font-weight: 700;
  line-height: 50px; /* 100% */
  margin-bottom: 30px;
}
.formulario-panama-header p{
  color: #1D1D1F;
  font-family: "Helvetica";
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px; /* 173.333% */
  margin-bottom: 10px;
}
.formulario-panama-header .contenedor-icono-form p {
  color: #0178B3;
  font-family: Helvetica;
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  line-height: 21px; /* 140% */
}
.formulario-panama-header h3 {
  color: #0070B2;
  margin: 0;
  font-family: Helvetica;
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: 53px; /* 240.909% */
}
.icono-contenedor-flecha {
  
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  margin-right: 10px;
  border-radius: 10px;
  background: linear-gradient(180deg, #0070B2 0%, #00A6BD 100%);
}
.flecha-atras-img {
  width: 8px;
  height: 8px;
  stroke-width: 2px;
  stroke: #FFF;
}
.formulario-panama-body {
  grid-column: 3/5;
 grid-row: 2/4;
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.formulario-panama-form {
  flex: 2;
  padding: 20px;
  border-radius: 8px;
}
.formulario-panama-form label {
  display: block;
  margin-bottom: 5px;
  font-size: 14px;
  font-weight: bold;
  color: #000;
}
.formulario-panama-form input,
.formulario-panama-form select {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 14px;
  background-color: #f9f9f9;
}
.formulario-panama-form input[type="file"] {
  padding: 3px;
}
.formulario-panama-form button {
  display: flex;
  justify-content: center;
  width: 100%;
  padding: 10px 20px;
  border-radius: 10px;
  background: #0070B2;
  color: white;
  border: none;
  cursor: pointer;
  align-items: center;
  font-size: 16px;
}
.formulario-panama-form button .icono {
  margin-right: 5px;
}
.file-upload-panama-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.file-upload-panama-label {
  display: flex;
  align-items: center;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
  position: relative;
}
.file-upload-panama-label::before {
  content: '';
  display: inline-block;
  width: 54px;
  height: 44px;
  background-image: url('../../img/iconos/cvicon.png');
  background-size: contain;
  background-repeat: no-repeat;
  margin-right: 8px;
}
.file-upload-panama-wrapper input[type="file"] {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}
@media only screen and (max-width: 768px) {
  .formulario-panama-body {
    grid-row: 3;
    grid-column: 1/5;
  }
  .info-formulario-panama{
    grid-row: 4;
    grid-column: 1/5;
}
.apartado-formulario-panama {
  grid-row: 2;
  grid-column: 1/5;
}
}