/* Start custom CSS for shortcode, class: .elementor-element-36e5512 *//* TAWOON INVOICE FORM */

.tawoon-form-section .tawoon-form-card {
    width: 100%;
    max-width: 650px;
    margin: 0 auto;
    padding: 30px;
    background: #ffffff;
    border: 1px solid #e5e9e8;
    border-radius: 16px;
    box-shadow: 0 10px 35px rgba(0,0,0,0.06);
}

/* Heading */

.tawoon-form-section .tawoon-title {
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 28px;
    line-height: 1.3;
}

/* FORM */

.tawoon-form-section form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Every field */

.tawoon-form-section form label {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 0;
    font-size: 13px;
    font-weight: 600;
}

/* Inputs */

.tawoon-form-section input,
.tawoon-form-section select,
.tawoon-form-section textarea {
    width: 100%;
    box-sizing: border-box;
    padding: 13px 15px;
    border: 1px solid #dfe5e3;
    border-radius: 9px;
    background: #ffffff;
    font-size: 14px;
    line-height: 1.4;
    outline: none;
    transition: all .2s ease;
}

/* Focus */

.tawoon-form-section input:focus,
.tawoon-form-section select:focus,
.tawoon-form-section textarea:focus {
    border-color: #174b45;
    box-shadow: 0 0 0 3px rgba(23,75,69,0.08);
}

/* Name */

.tawoon-form-section input[name="name"] {
    height: 48px;
}

/* Phone */

.tawoon-form-section input[name="phone"] {
    height: 48px;
}

/* Head */

.tawoon-form-section select[name="head"] {
    height: 48px;
    cursor: pointer;
}

/* Amount */

.tawoon-form-section input[name="amount"] {
    height: 48px;
}

/* Address */

.tawoon-form-section textarea[name="address"] {
    min-height: 110px;
    resize: vertical;
}

/* Create button */

.tawoon-form-section button[name="tawoon_create_invoice"] {
    width: 100%;
    min-height: 50px;
    border: 0;
    border-radius: 9px;
    background: #174b45;
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .4px;
    cursor: pointer;
    transition: all .2s ease;
}

.tawoon-form-section button[name="tawoon_create_invoice"]:hover {
    transform: translateY(-1px);
    box-shadow: 0 7px 18px rgba(23,75,69,0.20);
}

/* Success / Error */

.tawoon-form-section .tawoon-success,
.tawoon-form-section .tawoon-error {
    padding: 12px 14px;
    border-radius: 8px;
    margin-bottom: 18px;
    font-size: 13px;
}

/* Mobile */

@media (max-width: 600px) {

    .tawoon-form-section .tawoon-form-card {
        padding: 22px 18px;
        border-radius: 12px;
    }

    .tawoon-form-section .tawoon-title {
        font-size: 21px;
    }

    .tawoon-form-section form {
        gap: 17px;
    }

}/* End custom CSS */