
.popup {
    position: fixed;
    inset: 0;
    opacity: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    padding: 0 2.5rem;
    transition: opacity 0.2s ease;
    pointer-events: none;
}

.popup--active {
    opacity: 1;
    pointer-events: auto;
}

.popup--active .popup__content {
    transform: scale(1) translateY(0);
    opacity: 1;
}

.popup__content {
    display: flex;
    justify-content: space-between;
    width: 75rem;
    position: relative;
    background-color: #202938;
    border-radius: 20px;
    transform: scale(0.8) translateY(-50px);
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.3s ease;
}

.popup__main {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.popup__left {
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 2.5rem;
    padding: 3.75rem;
}

.popup__title {
    font-family: Unbounded, sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    text-transform: uppercase;
}

.popup__title span {
    color: #ff6b01;
}

.popup__description {
    font-size: 1.5rem;
}

.popup__form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.popup__form-input {
    background-color: transparent;
    outline: none;
    border: 1px solid #BBBBBB;
    padding: 1.25rem;
    border-radius: 10px;
    font-size: 1.125rem;
    font-weight: 400;
    font-family: "Ysabeau SC", sans-serif;
    color: #fff;
    transition: 0.3s all;
}

.popup__form-input::placeholder {
    color: #bbb;
}

.popup__form-input:hover {
    border-color: var(--color-accent);
}

.popup__form-input:focus {
    border-color: var(--color-accent);
}

.popup__form-textarea {
    height: 9.375rem;
    border-radius: 10px;
}

.popup__send {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.9375rem;
    text-transform: uppercase;
    background-color: #ff6b01;
    padding: 0.625rem 0;
    border-radius: 80px;
    font-size: 1.375rem;
    font-weight: 700;
    color: #fff;
    cursor: pointer;
    margin-top: 0.9375rem;
}

.popup__send img {
    height: 2.5rem;
    width: 2.5rem;
}

.popup__image {
    width: 45%;
}

@media (max-width: 768px) {
    .popup__image {
        display: none;
    }

    .popup__form-input {
        border-radius: 5px;
    }
}