#weaskforquote-form {
    width: 80%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin: auto;
    padding-top: 30px;
    padding-bottom: 30px;
}

#weaskforquote-form h2 {
    font-size: 30px;
    text-align: center;
}

.weaskforquote-form-container {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    column-gap: 2%;
    row-gap: 32px;
}

.weaskforquote-form-container .form-block {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.weaskforquote-form-container .form-block.half {
    width: 49%;
}

.weaskforquote-form-container .form-block.full {
    width: 100%;
}

.weaskforquote-form-container .form-block .form-label {
    text-align: left;
    font-size: 16px;
}

.weaskforquote-form-container .form-block .form-input {
    padding: 8px 10px;
    border: 1px solid darkgray;
    border-radius: 3px;
    font-size: 14px;
}

.weaskforquote-form-container .form-block .form-input:focus {
    outline: none;
    border: 1px solid #ff879b;
}

label .required-flag-we,
.checkbox-text .required-flag-we {
    color: #ff879b;
}

.weaskforquote-form-container .form-block.full.custom-file-input-wrapper {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 2%;
}

.custom-file-input-wrapper .file-container {
    width: 34%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.custom-file-input-wrapper .file-disclaimer-container {
    font-size: 16px;
    width: 64%;
}

.custom-file-input-wrapper .file-disclaimer-container .allowed-types {
    font-size: 11px;
}

.custom-file-input {
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    width: 30%;
    height: 100%;
    cursor: pointer;
}

.custom-file-label {
    all: unset;
    display: inline-block;
    padding: 10px 20px;
    background-color: black;
    color: #fff;
    border-radius: 0px;
    cursor: pointer;
    font-size: 14px;
    font-weight: bold;
}

.custom-file-label:after {
    content: none;
    background: none;
    color: inherit;
    border: none;
    box-shadow: none;
}

#file-name {
    margin-left: 0;
    font-size: 12px;
    color: #333;
    text-align: center;
}

/* ✅ Checkbox personalizado que solo se activa al hacer clic en el círculo */

.weaskforquote-form-container .form-block.checkbox-wrapper {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 10px;
    position: relative;
    font-size: 14px;
    color: #333;
    line-height: 1.4;
    user-select: none;
}

.custom-checkbox-input {
    position: absolute;
    opacity: 0;
    pointer-events: all;
    width: 20px;
    height: 20px;
    margin-top: 2px;
    z-index: 2;
    cursor: pointer;
}

.custom-checkbox-we {
    position: relative;
    width: 20px;
    height: 20px;
    background-color: #fff;
    border: 1px solid black;
    border-radius: 50%;
    flex-shrink: 0;
    z-index: 1;
    pointer-events: none;
}

.custom-checkbox-we::after {
    content: "";
    position: absolute;
    left: 6px;
    top: 3px;
    width: 5px;
    height: 10px;
    border: solid #ff879b;
    border-width: 0 2px 2px 0;
    transform: rotate(0) scale(0);
    transition: transform 0.2s ease-in-out;
}

.custom-checkbox-input:checked+.custom-checkbox-we::after {
    transform: rotate(45deg) scale(1);
}

.checkbox-wrapper label {
    cursor: default;
    margin-top: 1px;
}

/* ✅ Botón de envío */
.weaskforquote-submit-button {
    background-color: black;
    color: #fff;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: bold;
    border: none;
    border-radius: 0;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    width: 100%;
    max-width: 250px;
    margin: 0 auto;
    display: block;
}

.weaskforquote-submit-button:hover {
    background-color: #ff879b;
    transform: translateY(-2px);
}

.required-we,
.custom-checkbox-we {
    transition: outline 0.3s ease;
}

.custom-checkbox-we.error {
    outline: 1px solid red;
}

#weaskforquote-response {
    width: 80%;
    margin: auto;
    font-size: 14px;
    padding: 12px;
    border-radius: 6px;
    font-weight: bold;
}

#weaskforquote-response.success {
    color: #155724;
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
}

#weaskforquote-response.error {
    color: #721c24;
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
}