/*wp-content\themes\cellca\css\componentes\formulario-costarica.css */
.formulario-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;
    
}

.formulario-header {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-row: 4;
    align-items: flex-start;
    margin-bottom: 20px;
    font-size: 24px;
    gap: 20px;
}
.apartado-formulario-costa {
    grid-column: 1/3;
    grid-row: 2;
}
.info-formulario-costa {
    grid-column: 1/3;
    grid-row: 3;
}
.apartado-formulario-costa h2{
    color: #0070B2;
    font-family: Helvetica;
    font-size: 50px;
    font-style: normal;
    font-weight: 700;
    line-height: 50px; /* 100% */
    margin-bottom: 30px;
  }
  .formulario-header p{
    color: #1D1D1F;
    font-family: "Helvetica";
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px; /* 173.333% */
    margin-bottom: 10px;
  }
.contenedor-icono-form {
    grid-column: 1/5;
    display: flex;
    align-items: flex-start;
}
.formulario-header .contenedor-icono-form p {
    color: #0178B3;
    font-family: Helvetica;
    font-size: 15px;
    font-style: normal;
    font-weight: 700;
    line-height: 21px; /* 140% */
}
.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-body {
    grid-column: 3/5;
 grid-row: 2/4;
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.formulario-contacto {
    flex: 1;
    margin-right: 40px;
    color: #000;
}

.formulario-header h3 {
    color: #0070B2;
    margin: 0;
    font-family: Helvetica;
    font-size: 22px;
    font-style: normal;
    font-weight: 700;
    line-height: 53px; /* 240.909% */
}



.formulario-header h2 {
    color: #0070B2;
    font-family: Helvetica;
    font-size: 50px;
    font-style: normal;
    font-weight: 700;
    line-height: 50px; /* 100% */
    margin-bottom: 30px;
}

.formulario-header p {
    color: #1D1D1F;
    font-family: "Helvetica";
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px; /* 173.333% */
}

.negrita-formulario {
    color: #1D1D1F;
    font-family: Helvetica;
    font-size: 15px;
    font-style: normal;
    font-weight: 700;
    line-height: 26px;
}

.formulario-form {
    flex: 2;
    padding: 20px;
    border-radius: 8px;
}

.formulario-form label {
    display: block;
    margin-bottom: 5px;
    font-size: 14px;
    font-weight: bold;
    color: #000;
}

.formulario-form input,
.formulario-form select {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
    background-color: #f9f9f9;
}

.formulario-form input[type="file"] {
    padding: 3px;
}

.formulario-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-form button .icono {
    margin-right: 5px;
}

.file-upload-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.file-upload-label {
    display: flex;
    align-items: center;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    position: relative;
}

.file-upload-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-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-body {
        grid-row: 3;
        grid-column: 1/5;
    }
    .info-formulario-costa {
        grid-column: 1/5;
        grid-row: 4;
    }
    .apartado-formulario-costa {
        grid-column: 1/5;
        grid-row: 2;
    }
}