html {
    scroll-behavior: smooth;
}

.form-section {
    margin: 50px 0 !important;
}


.form-section .advantages-title {
    font-size: 1.8rem;
}

.form-section,
.form-section .form-wrapper,
.form-section .form-wrapper .input-wrapper {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    justify-content: center;
}

.form-section .form-wrapper {
    width: 100%;
    gap: 15px;
    box-sizing: border-box;
}

.form-section .form-wrapper .form-title {
    font-size: 34px;
    margin-bottom: 15px;
    margin-top: 0;
    color: white;
    text-align: center;
}

.form-section .form-wrapper .input-wrapper {
    width: 100%;
    max-width: 500px;
    gap: 3px !important;
}

.form-group small {
    color: #fe6a00;
    text-align: left !important;
    width: 100%;
}

.form-section .form-wrapper .input-wrapper input {
    width: 100%;
    height: 50px;
    padding: 13px 16px;
    border: 0;
    font-size: 16px;
    box-sizing: border-box;
    background: white;
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.form-section .form-wrapper .input-wrapper input[type="tel"] {
    width: 100%;
}

.form-section .form-wrapper .submit_btn {
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    text-transform: uppercase;
    height: 50px;
    padding: 13px 16px;
    display: flex;
    width: 100%;
    max-width: 500px;
    box-sizing: border-box;
    align-items: center;
    justify-content: center;
    border: 0;
    background: #2563eb;
    color: white;
    border-radius: 12px;
}

.form_message.error.inactive,
.form_message.success.inactive {
    display: none;
}

.form_message.error.active,
.form_message.success.active {
    display: block !important;
}

.form_message {
    width: 100%;
    min-height: 46px;
    align-content: center;
    box-sizing: border-box;
    padding: 13px 16px !important;
    font-size: 16px !important;
    border-radius: 12px;
}

.form_message.error {
    background-color: #ff7f7f;
    border: 2px dashed #ce0909;
    color: #fff;
}

.form_message.success {
    background-color: #d4ffe0;
    border: 2px dashed #1f6b34;
    color: #000;
}

.iti {
    width: 100%;
}

.iti__selected-flag {
    padding: 13px 16px;
    border-radius: 12px 0 0 12px;
}

.iti__flag-container {
    padding: unset !important;
}

.iti-mobile .iti__country-list {
    box-sizing: border-box;
    max-width: 90%;
}

.form-group input.invalid,
.form-group input.invalid:hover,
.form-group input.invalid:focus {
    border-color: #fe6a00;
}

@media (max-width: 480px) {
    .form_message,
    .iti__selected-dial-code,
    .form-group input {
        font-size: 14px;
    }

    .form-group small {
        font-size: 13px;
    }
}

.notify-container,
.notify-container-customers {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.notify {
    /* background: #16a34a; */
    color: #ffffff;
    padding: 14px 18px;
    border-radius: 0.5rem;
    font-family: Arial, sans-serif;
    font-size: 14px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    min-width: 260px;
    max-width: 320px;
    display: none;
    background: rgba(5, 13, 46, 0.95);
    border: 1px solid rgba(0, 230, 118, 0.3);
}

.notify strong {
    font-weight: 700;
    color: #4ade80;
}

.notify .city {
    opacity: 0.9;
}

.notify .amount {
    font-weight: 700;
}

.notify-container-customers {
    width: 380px;
    max-width: 90vw;
}

.notify-customer {
    /* background: linear-gradient(135deg, #00c853, #1b9e00); */
    background: #16a34a;
    color: white;
    border-radius: 12px;
    padding: 14px 18px;
    margin-top: 12px;
    box-shadow: 0 8px 20px rgba(0, 200, 83, 0.4);
    border: 1px solid rgba(255,255,255,0.3);
    font-family: Arial, sans-serif;
    line-height: 1.4;
}

.notify-customer-inner {
    display: flex;
    align-items: center;
    text-align: left;
    gap: 14px;
}

.notify-customer .fire-icon {
    font-size: 28px;
    margin-bottom: 6px;
}

.notify-customer strong {
    font-size: 17px;
    letter-spacing: 0.5px;
    width: 100%;
}

.notify-text {
    font-size: 15.5px;
    opacity: 0.95;
    text-align: left;
}

.notify-wrapper {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 9999;
}

.notify-icon {
    width: 40px;
    height: auto;
    display: flex;
    align-items: center;
}

.notify-icon img {
    width: 100%;
    height: 100%;
    flex-shrink: 0;
}

@media (max-width: 480px) {
    .notify-customer strong {
        font-size: 14px !important;
    }

    .notify-text {
        font-size: 12px !important;
    }
}