@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            background-color: rgb(238, 238, 254);
        }

        .formbold-mb-3 {
            margin-bottom: 15px;
        }

        .formbold-relative {
            position: relative;
        }

        .formbold-opacity-0 {
            opacity: 0;
        }

        .formbold-stroke-current {
            stroke: currentColor;
        }

        #supportCheckbox:checked~div span {
            opacity: 1;
        }

        .formbold-main-wrapper {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 48px;
            background-color: rgb(237, 242, 252);
            min-height: 100vh;
            width: 100%;
        }

        .formbold-form-wrapper {
            margin: 0 auto;
            max-width: 570px;
            width: 100%;
            background: white;
            padding: 40px;
            border-radius: 12px;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
        }

        .formbold-img {
            margin-bottom: 45px;
        }

        .formbold-form-title {
            margin-bottom: 30px;
        }

        .formbold-form-title h2 {
            font-weight: 600;
            font-size: 28px;
            line-height: 34px;
            color: #07074d;
        }

        .formbold-form-title p {
            font-size: 16px;
            line-height: 24px;
            color: #536387;
            margin-top: 12px;
        }

        .formbold-input-flex {
            display: flex;
            gap: 20px;
            margin-bottom: 15px;
        }

        .formbold-input-flex>div {
            width: 50%;
        }

        .formbold-btn {
            font-size: 16px;
            border-radius: 5px;
            padding: 14px 25px;
            border: none;
            font-weight: 500;
            background-color: #6a64f1;
            color: white;
            cursor: pointer;
            margin-top: 25px;
            text-decoration: none;
            /* This removes the underline */
        }

        .formbold-btn:hover {
            background-color:rgb(41, 39, 87);
        }

        .formbold-form-title ul {
            padding-left: 20px;
            margin-top: 10px;
            color: #536387;
            font-size: 14px;
            line-height: 22px;
        }

        .formbold-form-title ul li {
            margin-bottom: 10px;
            list-style-type: disc;
        }

        /* Overlay */
        .popup-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.7);
            z-index: 9998;
        }

        /* Popup box */
        .popup {
            display: none;
            position: fixed;
            left: 50%;
            top: 100%;
            /* Start hidden */
            transform: translate(-50%, -50%);
            background: white;
            padding: 40px;
            border-radius: 20px;
            width: 600px;
            max-width: 90%;
            text-align: center;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
            z-index: 9999;
            transition: top 0.5s ease;
        }

        /* Show popup */
        .popup.show {
            top: 50%;
        }

        /* Inner scrollable content */
        .popup-content {
            padding: 10px;
            overflow-y: auto;
            max-height: 80vh;
            /* Match parent's height */
        }

        .popup-content form {
            display: flex;
            flex-direction: column;
            gap: 15px;
            /* reduce spacing between inputs */
            align-items: stretch;
            margin-top: 20px;
        }

        .popup-content label {
            text-align: left;
            font-weight: 500;
            margin-bottom: 5px;
            color: #333;
        }

        .popup-content input[type="text"],
        .popup-content input[type="file"],
        .popup-content input[type="number"] {
            padding: 12px 16px;
            border: 1px solid #ccc;
            border-radius: 10px;
            font-size: 14px;
            width: 100%;
            background: #f9f9f9;
            box-sizing: border-box;
            transition: border-color 0.3s;
        }

        .popup-content input[type="text"]:focus,
        .popup-content input[type="file"]:focus,
        .popup-content input[type="number"]:focus {
            border-color: #4a6cf7;
            outline: none;
            background: #fff;
        }

        .popup-content select {
            padding: 12px 16px;
            border: 1px solid #ccc;
            border-radius: 10px;
            font-size: 14px;
            width: 100%;
            background: #f9f9f9;
            box-sizing: border-box;
            transition: border-color 0.3s, background 0.3s;
            appearance: none;
            /* Remove default arrow in some browsers */
            -webkit-appearance: none;
            -moz-appearance: none;
        }

        .popup-content select:focus {
            border-color: #4a6cf7;
            outline: none;
            background: #fff;
        }

        .popup-content textarea {
            padding: 12px 16px;
            border: 1px solid #ccc;
            border-radius: 10px;
            font-size: 14px;
            width: 100%;
            min-height: 100px;
            resize: vertical;
            /* Allows user to resize vertically only */
            background: #f9f9f9;
            box-sizing: border-box;
            transition: border-color 0.3s;
        }

        .popup-content textarea:focus {
            border-color: #4a6cf7;
            outline: none;
            background: #fff;
        }

        .popup-buttons {
            margin-top: 20px;
            display: flex;
            justify-content: center;
            gap: 10px;
        }

        .btn {
            padding: 12px 24px;
            background-color: royalblue;
            color: white;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            margin-top: 20px;
            font-size: 16px;
        }

        .btn:hover {
            background-color: rgb(31, 41, 95);
        }

        .btn_hantar {
            padding: 12px 24px;
            background-color: rgb(31, 130, 48);
            color: white;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            margin-top: 20px;
            font-size: 16px;
        }

        .btn_hantar:hover {
            background-color: rgb(24, 79, 33);
        }

        .button-group {
            display: flex;
            gap: 12px;
            /* space between buttons */
            justify-content: center;
            /* or flex-start / flex-end */
            margin-top: 20px;
        }