#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 #000;
}

label .required-flag,
.checkbox-text .required-flag {
    color: #FFD700;
}

.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: #000;
    color: #fff;
    border-radius: 3px;
    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: 10px;
    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 {
    position: relative;
    width: 20px;
    height: 20px;
    background-color: #fff;
    border: 1px solid #000;
    border-radius: 50%;
    flex-shrink: 0;
    z-index: 1;
    pointer-events: none;
}

.custom-checkbox::after {
    content: "";
    position: absolute;
    left: 6px;
    top: 3px;
    width: 5px;
    height: 10px;
    border: solid #FFD700;
    border-width: 0 2px 2px 0;
    transform: rotate(0) scale(0);
    transition: transform 0.2s ease-in-out;
}

.custom-checkbox-input:checked+.custom-checkbox::after {
    transform: rotate(45deg) scale(1);
}

.checkbox-wrapper label {
    cursor: default;
    margin-top: 1px;
}

/* ✅ Botón de envío */
.weaskforquote-submit-button {
    background-color: #000;
    color: #fff;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: bold;
    border: none;
    border-radius: 3px;
    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: #FFD700;
    transform: translateY(-2px);
}

.required,
.custom-checkbox {
    transition: outline 0.3s ease;
}

.custom-checkbox.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;
}


.request-virtual-sample {
    background: #000;               /* fondo negro */
    color: #FFD700;                 /* amarillo estilo icono (puedes usar #FFFF00 si prefieres más saturado) */
    border: none;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 25px;   /* semicircular lado derecho */
    display: inline-flex;
    align-items: center;
    gap: 8px;                       /* separación con icono si lo añades */
    transition: background 0.2s, color 0.2s, transform 0.2s;
}

/* Hover efecto elegante */
.request-virtual-sample:hover {
    background: #111;
    color: #ffe700;
    transform: translateY(-2px);
}

/* Para apariencia más plana y elegante */
.request-virtual-sample:active {
    transform: translateX(1px) scale(0.98);
}