.wclc-wrapper {
    max-width: 600px;
    margin: 40px auto;
    padding: 30px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 25px rgba(0,0,0,0.08);
}

.wclc-form-group {
    margin-bottom: 20px;
}

.wclc-form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 14px;
    color: #333;
}

.wclc-form input,
.wclc-form select {
    width: 100%;
    height: 48px;
    border: 1px solid #dcdcdc;
    border-radius: 8px;
    padding: 0 15px;
    font-size: 15px;
    background: #fff;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.wclc-form input:focus,
.wclc-form select:focus {
    border-color: #2271b1;
    outline: none;
    box-shadow: 0 0 0 3px rgba(34,113,177,0.15);
}

.wclc-phone-wrap {
    display: flex;
    align-items: center;
}

.country-code {
    height: 48px;
    min-width: 60px;
    background: #f3f4f5;
    border: 1px solid #dcdcdc;
    border-right: none;
    border-radius: 8px 0 0 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.wclc-phone-wrap input {
    border-radius: 0 8px 8px 0;
}

.wclc-submit-btn {
    width: 100%;
    height: 50px;
    border: none;
    border-radius: 8px;
    background: #2271b1;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.wclc-submit-btn:hover {
    background: #135e96;
}

.wclc-submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

#wclc-response {
    margin-top: 20px;
}

.wclc-success {
    background: #e7f7ed;
    color: #0f5132;
    padding: 14px 18px;
    border-radius: 8px;
    border: 1px solid #badbcc;
    font-size: 14px;
}

.wclc-error {
    background: #fdecec;
    color: #842029;
    padding: 14px 18px;
    border-radius: 8px;
    border: 1px solid #f5c2c7;
    font-size: 14px;
}

@media(max-width: 767px) {

    .wclc-wrapper {
        padding: 20px;
    }

    .wclc-form input,
    .wclc-form select,
    .wclc-submit-btn {
        font-size: 14px;
    }
}