.field input, .field select, .field textarea{
    width:100%;
    padding:15px;
    font-size: 15px;
    font-weight: 300;
    border: 1px solid var(--color-secundari);
}
.field input::placeholder,
.field select::placeholder, 
.field textarea::placeholder {
    font-size: 22px;
    font-weight: 300;
    color: #193133;
	opacity: 0.64;
}

.field {
    margin-bottom: 10px;
}

.field.contact {
    margin-bottom: 10px;
}
.legals .punt_legal{
    display: block;
    margin-top: 15px;
    margin-bottom: 20px;
    font-weight: 300;
    font-size: 14px;
}
.legals .punt_legal a {
    color: #fff;
    text-transform: lowercase;
}
.wrap_btn .send{
    border-radius: 2px;
    font-family: "Epilogue", sans-serif !important;
    background: #CDFC72;
    color: #233430;
    font-size: 14px;
    width: 150px;
    height: 40px;
    transition: all 0.3s ease-in-out;
    display: inline-block;
    padding: 10px 25px;
    font-weight: 400;
    border: 0;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 20px;
}
.wrap_btn .send:hover{
    opacity: 0.8;
}
.g-recaptcha{
    margin-top: 25px;
    margin-bottom: 20px;
}

.file-upload-wrapper {
    position: relative;
    width: 100%;
    height: 57px;
}
.file-upload-wrapper:after {
    content: attr(data-text);
    font-size: 22px;
    position: absolute;
    top: 0;
    left: 0;
    background: #fff;
    padding: 0px 15px;
    display: block;
    width: calc(100% - 40px);
    pointer-events: none;
    z-index: 20;
    color: #6c7b7c;
    font-weight: 300;
    height: 57px;
    align-content: center;
}
.file-upload-wrapper:before {
    position: absolute;
    top: 0;
    right: 0;
    display: inline-block;
    z-index: 25;
    text-transform: uppercase;
    pointer-events: none;
    background-color: var(--color-principal);
    color: #ffffff;
    font-size: 15px;
    height: 57px;
    width: 180px;
    text-align: center;
    text-transform: uppercase;
    cursor: pointer;
    align-content: center;
    font-weight: 300;
    transition: all 0.3s ease-in-out;
}
.file-upload-wrapper:hover:before {
    background: #CDFC72;
    color: #233430;
}
.file-upload-wrapper input {
    opacity: 0;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 99;
    margin: 0;
    padding: 0;
    display: block;
    cursor: pointer;
    width: 100%;
}

#options_tema {
    width: 100%;
    height: 57px;
    padding: 0 15px;
    font-size: 22px;
    font-weight: 300;
    font-family: "Oswald", sans-serif !important;
    color: #6c7b7c;
    border-radius: 2px;
    border: 1px solid var(--color-secundari);
}

.select_tema {
    position: relative;
    display: inline-block;
    width: 100%;
    margin-bottom: 10px;
  }
  
  .select_tema select {
    width: 100%;
    padding: 10px;
    appearance: none;
    border: 1px solid #ccc;
    border-radius: 4px;
  }
  
  .select_tema::after {
    content: '';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid var(--color-principal);
    pointer-events: none;
  }

  @media screen and (max-width: 1010px) {
    form#frm_contacte {
        width: 100% !important;
    }
    #options_tema {
        height: 50px;
    }
    .field input, .field select, .field textarea {
        padding: 13px 15px;
    }
    .file-upload-wrapper:before, .file-upload-wrapper:after {
        height: 50px;
    }
  }
  
  @media screen and (max-width: 768px) {
    .field input::placeholder,
    .field select::placeholder, 
    .field textarea::placeholder,
    #options_tema,
    .file-upload-wrapper:after {
        font-size: 18px;
    }
  }