.pop-up-form-wrapper {
    width: 100%;
    position: fixed;
    inset: 0;
    width: 100%;
    display: none;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    padding: 10px;
    z-index: 99999;
}

.pop-up-section {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pop-up-container {
    position: relative;
    max-width: 1024px;
    width: 100%;
    max-height: 98dvh;
    height: 100%;
    overflow-y: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    border-radius: 20px;
}

.pop-up-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 10px;
    border-radius: 20px;
}

.pop-up-image {
    width: 100%;
    height: 100%;
    position: relative;
    border-radius: 12px;
}

.pop-up-image-layer {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color: #00000060;
    border-radius: 12px;
}

.pop-up-image-src {
    width: 100%;
    height: 100%;
    border-radius: 12px;
}

.pop-up-close-button {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 17px;
    z-index: 99999;
}

.pop-up-close-button>button {
    font-weight: 600;
    color: #000;
    background-color: #fff;
    border: 2px solid #ffffff;
    border-radius: 50%;
    padding: 0px 6px;
}

.pop-up-content {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 20px 0px;
}

.pop-up-form {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 4px;
}

.form-label {
    position: absolute;
    top: 50%;
    left: 16px;
}

.form-title {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-title>h6 {
    color: #e92c2c;
    font-size: 30px;
    line-height: normal;
}

.form-title>p {
    color: #6c6a6a;
    line-height: normal;
    font-weight: 600;
}

.form-group {
    width: 100%;
    position: relative;
    margin-bottom: 14px;
}

.form-input,
.form-select {
    box-sizing: border-box;
}

.form-input {
    width: 100%;
    padding: 5px 12px !important;
    border: 2px solid #e92c2c !important;
    border-radius: 12px;
    background: transparent;
    color: #6c6a6a !important;
    font-weight: 600;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: #e92c2c;
}

.form-label {
    position: absolute;
    top: 50%;
    left: 16px;
    transform: translateY(-50%);
    background-color: transparent;
    padding: 0 4px;
    color: #e92c2c !important;
    font-size: 16px;
    font-weight: 600;
    pointer-events: none;
    transition: all 0.3s ease;
}

.form-input:focus+.form-label,
.form-input:not(:placeholder-shown)+.form-label {
    top: 0px;
    transform: translateY(-50%);
    font-size: 14px;
    color: #e92c2c !important;
    background-color: #ffffff;
    text-transform: none;
}

.form-select {
    width: 100%;
    padding: 8px 12px;
    border: 2px solid #e92c2c !important;
    border-radius: 12px;
    background: transparent;
    color: #6c6a6a;
    font-weight: 600;
    font-size: 14px;
    appearance: none;
    cursor: pointer;
}

.form-select:focus {
    outline: none;
    border-color: #e92c2c !important;
}

.select-label {
    position: absolute;
    top: 50%;
    left: 16px;
    transform: translateY(-50%);
    background-color: transparent;
    padding: 0 4px;
    color: #e92c2c !important;
    font-size: 16px;
    font-weight: 600;
    pointer-events: none;
    transition: all 0.3s ease;
}

.form-select:focus+.select-label,
.form-select:valid+.select-label {
    top: 0px;
    transform: translateY(-50%);
    font-size: 14px;
    color: #e92c2c !important;
    background-color: #ffffff;
    text-transform: none;
}

.form-group>button {
    width: fit-content;
    background-color: #e92c2c;
    color: #ffffff;
    font-size: 14px;
    font-weight: 550;
    padding: 8px 16px;
    border-radius: 15px;
    text-transform: uppercase;
    margin-top: 20px;
}

@media only screen and (min-width: 768px) {
    .pop-up-form {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media only screen and (min-width: 1024px) {
    .pop-up-wrapper {
        flex-direction: row;
        align-items: center;
    }

    .pop-up-container {
        max-height: none;
        height: fit-content;
    }

    .pop-up-image {
        width: 65%;
    }

    .pop-up-content {
        width: 35%;
        padding: 20px !important;
    }

    .pop-up-close-button>button {
        color: #000;
        border: 2px solid #000000;
    }

    .pop-up-form {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }
}


@media only screen and (min-width: 1280px) {
    .pop-up-container {}
}