.iti {
    width: 100%;

    .iti__selected-dial-code {
        margin-top: 1px;
        font-size: 14px;
    }

    .iti__selected-country {
        padding-left: 10px;
    }

    .iti__dropdown-content {
        background-color: #282828;
    }

    .iti__search-icon svg {
        width: 20px;
        height: 20px;
    }

    .iti__search-input {
        padding-left: 40px;
        height: 56px;
        background: #1A1A1A;
        color: var(--color-text-primary);
        font-size: 18px;
        outline: none;
    }
}

.contact-form-modal {
    position: fixed;
    top: 0;
    right: -100%;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    z-index: 100;
    backdrop-filter: blur(8px);
    transition: all 0.3s ease-in-out;

    .content {
        position: relative;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 100%;
        height: 50svh;
        background: #1A1A1A;

        #contact-form-modal-close {
            position: absolute;
            top: 12px;
            right: 16px;
            margin: 0;
            width: auto;
            height: auto;
            background: transparent;
            border: none;

            img {
                width: 24px;
                height: 24px;
            }
        }
    }
}

.contact-form-modal .content, section.contact-form {
    form {
        display: flex;
        flex-direction: column;
        padding: 24px 14px;
        width: 100%;
        background: #1A1A1A;
        border-radius: var(--border-radius-base) var(--border-radius-base) 0 0;

        h2 {
            margin-bottom: 8px;
            font-family: "Bebas Neue", sans-serif;
            font-size: 40px;
        }

        p {
            margin-bottom: 20px;
            font-size: 14px;
            font-weight: 500;
        }

        .inputs {
            display: flex;
            flex-direction: column;
            margin-bottom: 20px;
            gap: 8px;

            .input {
                position: relative;
                width: 100%;

                img {
                    position: absolute;
                    top: 10px;
                    left: 16px;
                    width: 24px;
                    height: 24px;
                }

                input {
                    padding: 10px 16px 10px 50px;
                    width: 100%;
                    height: 44px;
                    background: transparent;
                    border: 1px solid #F0F8FFB2;
                    border-radius: var(--border-radius-base);
                    color: #F0F8FF80;
                    font-size: 16px;
                    outline: none;

                    &:read-only {
                        cursor: pointer;
                    }
                }
            }
        }

        .book {
            height: 46px;
            font-size: 20px;
        }
    }

    img {
        border-radius: 0 0 var(--border-radius-base) var(--border-radius-base);
    }
}

section.contact-form {
    display: flex;
    flex-direction: column;
}