.wrapper-global {
    body {
        font-family: "Inter", sans-serif;
        background-color: #f3f4f6;
        /* A light gray background */
        margin: 0;
        padding: 0;
    }

    .row {
        border-bottom: 2px solid #eae7e7;
    }
        .no-border {
        border-bottom: 0px solid #eae7e7;
    }
    p {
        font-size: 12px;
    }

    /* Main container to center the form */
    .main-center {
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 100vh;
        /* padding: 2rem; */
        box-sizing: border-box;
    }

    .contact-data {
        margin-top: 10px;
    }
    .contact-data h4 {
        font-size: 19px;
        color: black;
        font-weight: bold;
    }

    /* The form card itself */
    .form-container {
        margin: 0 auto;
        max-width: 860px;
        width: 100%;
        background: white;
        padding: 32px;
        padding: 10px 32px;
        border-radius: 0.75rem;
        /* 12px */
        box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
            0 4px 6px -4px rgba(0, 0, 0, 0.1);
    }

    .no-padding {
        padding-right: 0;
        padding-left: 0;
        margin-left: 0;
        margin-right: 0;
    }

    /* Form image styling */
    .form-img {
        display: block;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 2rem;
        /* 32px */
        width: 55px;
        max-width: 100px;
        height: auto;
        /* Maintain aspect ratio */
    }

    .kyivstar-img {
        display: block;
        margin-left: 0;
        margin-right: auto;
        margin-bottom: 2rem;
        /* 32px */
        width: 90px;
        height: auto;
        /* Maintain aspect ratio */
    }

    .icons-img {
        display: inline;
        margin-left: 10px;
        margin-right: auto;
        width: 25px;
        height: auto;
        /* Maintain aspect ratio */
    }

    .num-img {
        display: inline;
        margin-left: 0px;
        margin-right: 24px;
        margin-bottom: 8px;
        width: 25px;
        height: auto;
        /* Maintain aspect ratio */
    }

    /* Form title and description */
    .form-title {
        font-size: 1.5rem;
        /* 30px */
        font-weight: 700;
        color: #111827;
        /* Dark gray */
        margin-bottom: 0.5rem;
        /* 8px */
        text-align: center;
    }

    .form-desc {
        color: #6b7280;
        /* Medium gray */
        margin-bottom: 2rem;
        /* 32px */
        font-size: 11px;
        /* 14px */
        text-align: center;
        line-height: 1.5;
        font-weight: bold;
    }

    .phone-desc {
        color: #302f2f;
        /* Medium gray */
        margin-bottom: 6px;
        margin-top: 6px;
        font-size: 0.7rem;
        text-align: center;
        line-height: 1.5;
        font-weight: bold;
        justify-content: center;
        /* по горизонтали */
        align-items: center;
    }

    /* Styling for form labels */
    .form-label {
        display: block;
        margin-bottom: 0.5rem;
        /* 8px */
        font-size: 0.875rem;
        /* 14px */
        font-weight: 600;
        color: #6b7280;
        /* Slightly lighter dark gray */
        font-weight: bold;
    }

    /* Unified styling for text inputs and select dropdowns */
    .form-input,
    .form-select {
        width: 100%;
        padding: 0.175rem 1.25rem;
        /* 14px 20px */
        border: 1px solid #d1d5db;
        /* Light gray border */
        border-radius: 0.5rem;
        /* 8px */
        /* background: #ffffff; */
        font-weight: 500;
        font-size: 14px;
        /* 16px */
        color: #111827;
        outline: none;
        box-sizing: border-box;
        transition: border-color 0.2s, box-shadow 0.2s;
        margin-bottom: 1.25rem;
        /* 20px */
    }

    .description-text {
        width: 100%;
        height: 100px;
        padding: 0.475rem 1.25rem;
        font-size: 12px;
        border: 1px solid #d1d5db;
        background: #ffffff;
        color: #111827;
        border-radius: 0.5rem;
    }

    .form-input::placeholder {
        color: #9ca3af;
        /* Lighter gray for placeholder */
    }

    /* Focus state for inputs and selects */
    .form-input:focus,
    .form-select:focus {
        border-color: #4ec1fb;
        /* Purple accent color */
        box-shadow: 0 0 0 3px rgba(21, 91, 221, 0.2);
    }

    /* Styling for the file input */
    .form-file {
        display: block;
        width: 100%;
        margin-bottom: 1.25rem;
        font-size: 12px;
        color: #374151;
    }

    /* Custom styling for file input button */
    .form-file::file-selector-button {
        margin-right: 1rem;
        padding: 0.5rem 1rem;
        border: 1px solid #d1d5db;
        border-radius: 0.375rem;
        background-color: #f9fafb;
        color: #374151;
        font-weight: 500;
        cursor: pointer;
        transition: background-color 0.2s;
    }

    .form-file::file-selector-button:hover {
        background-color: #f3f4f6;
    }

    .card-body {
        padding-top: 2px;
    }


    /* Styling for the checkbox */
    .form-checkbox {
        margin-top: 0.125rem;
        /* 2px */
        height: 1.25rem;
        /* 20px */
        width: 1.25rem;
        /* 20px */
        border-radius: 0.25rem;
        /* 4px */
        border: 1px solid #d1d5db;
        cursor: pointer;
        flex-shrink: 0;
    }

    .form-checkbox:checked {
        background-color: #6a64f1;
        border-color: #6a64f1;
    }

    /* Submit button styling */
    .form-btn {
        text-align: right;
        font-size: 14px;
        border-radius: 0.5rem;
        padding: 0.875rem 1.5rem;
        border: none;
        font-weight: 600;
        background-color: #0d6efd;
        color: white;
        cursor: pointer;
        margin-top: 1.5rem;
        /* 24px */
        transition: background-color 0.2s, box-shadow 0.2s;
    }

    .form-btn:hover {
        background-color: #2d8be2;
        /* Darker purple on hover */
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

    .button-container {
        display: flex;
        flex-direction: column;
        align-items:flex-start;
        gap: 8px; /* Відстань між кнопкою та лейблом */
        }

        .action-button {
        padding: 10px 20px;
        /* Додаткові стилі для кнопки */
        }

        .button-label {
        font-size: 12px;
        color: #666;
        }

    /* --- Mobile Responsive Styles --- */
    @media (max-width: 600px) {
        .main-center {
            padding: 1rem;
        }

        .form-container {
            padding: 1.5rem;
        }

        .form-title {
            font-size: 1.5rem;
            /* 24px */
        }
    }
}