.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.popup-overlay.active {
    display: flex;
}

.popup-content {
    background-color: #fff;
    padding: 42px 64px;
    border-radius: 8px;
    position: relative;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    text-align: left;
}

.popup-title {
    color: #282828;
    font-feature-settings: 'liga' off, 'clig' off;
    font-family: "League Spartan", sans-serif;
    font-size: 32.087px;
    font-style: normal;
    font-weight: 400;
    line-height: 78%;
    letter-spacing: -1.604px;
    margin-bottom: 28px;
    width: 100%;
    display: block;
    text-align: left;
}

.popup-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #666;
    padding: 5px;
    line-height: 1;
}

.popup-close:hover {
    color: #000;
}


/* Style for the form inside popup */

.popup-content .wpcf7-form {
    margin-top: 20px;
    text-align: left;
}

.altahub-demo__label {
    color: #262627;
    font-family: Roboto, sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    display: block;
    margin-bottom: 6px;
}

.altahub-demo__input {
    width: 100%;
    height: 40px;
    padding: 0 12px;
    border-radius: 6px;
    border: 1px solid #D3D3D3;
    margin-bottom: 15px;
    font-family: Roboto, sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 21px;
}

.altahub-demo__input::placeholder {
    color: #737373;
    font-family: Roboto, sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 21px;
}


/* Add spacing between form field groups */

.altahub-demo__label+.altahub-demo__input {
    margin-top: 6px;
    margin-bottom: 15px;
}

.altahub-demo__submit {
    width: 100%;
    margin-top: 28px;
    border-radius: 6px;
    background: #107A3B;
    font-family: Roboto, sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    color: #FEFEFE;
    padding: 12px 25px;
    border: none;
    cursor: pointer;
}

.altahub-demo__submit:hover {
    background-color: #0d6b32;
}