.wa-form-container-837e3a8f {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    font-family: var(--e-global-typography-primary-font-family, inherit);
    background: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.wa-form-header {
    text-align: center;
    margin-bottom: 30px;
}

.wa-form-header-icon-wrap {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #f8f9fa;
    margin-bottom: 15px;
    border: 1px solid #eee;
}

.wa-form-header-icon {
    font-size: 24px;
    color: #fbc02d;
    display: flex;
}
.wa-form-header-icon svg {
    width: 24px;
    height: 24px;
    fill: #fbc02d;
}

.wa-form-header h2 {
    margin: 0 0 10px;
    font-size: 28px;
    font-weight: 700;
    color: #212b36;
}

.wa-form-header p {
    margin: 0;
    color: #637381;
    font-size: 15px;
}

.wa-form-header-divider {
    color: #fbc02d;
    font-size: 18px;
    margin-top: 15px;
}

.wa-form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.wa-form-row .wa-form-group {
    flex: 1;
    min-width: 200px;
}

.wa-form-group {
    margin-bottom: 20px;
}

.wa-form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #212b36;
    font-size: 14px;
}

.wa-input-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

.wa-input-icon {
    position: absolute;
    left: 15px;
    color: #919eab;
    font-size: 14px;
    pointer-events: none;
}

.wa-form-group input, 
.wa-form-group select,
.wa-form-group textarea {
    width: 100%;
    padding: 12px 15px 12px 40px;
    border: 1px solid #dfe3e8;
    border-radius: 8px;
    box-sizing: border-box;
    font-family: inherit;
    font-size: 15px;
    color: #212b36;
    background-color: #ffffff;
    transition: all 0.2s ease;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.wa-form-group select {
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23919eab%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
    background-repeat: no-repeat;
    background-position: right 15px top 50%;
    background-size: 10px auto;
}

.wa-form-group textarea {
    padding-left: 15px;
    resize: vertical;
    min-height: 100px;
}

.wa-form-group input:focus, 
.wa-form-group select:focus,
.wa-form-group textarea:focus {
    outline: none;
    border-color: #fbc02d;
    box-shadow: 0 0 0 3px rgba(251, 192, 45, 0.1);
}

.wa-btn-837e3a8f {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 30px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    width: 100%;
    font-weight: 700;
    transition: transform 0.2s, opacity 0.3s, box-shadow 0.2s;
    margin-top: 10px;
}

.wa-btn-837e3a8f:hover {
    opacity: 0.95;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
}

.wa-btn-837e3a8f:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.wa-btn-icon {
    font-size: 1.2em;
    display: flex;
}
.wa-btn-icon svg {
    width: 1.2em;
    height: 1.2em;
}

.wa-form-footer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    font-size: 12px;
    color: #637381;
}

@media (max-width: 767px) {
    .wa-form-container-837e3a8f {
        padding: 25px 20px;
    }
    .wa-form-row {
        flex-direction: column;
        gap: 0;
    }
    .wa-form-header h2 {
        font-size: 24px;
    }
    .wa-form-footer {
        flex-direction: column;
        gap: 5px;
    }
    .wa-form-footer span:nth-child(even) {
        display: none;
    }
}
