
/* left side */
.iti-webinar {
    .webinar-text-divider {
        width: 54px;
        border-top: 2px solid #00c2c2;
        margin: 1.6rem 0rem 1.6rem 0rem;
    }
    h1 {
        font-size: 60px !important;
        letter-spacing: -2.5px;
        line-height: 1;
    }
    .date {
        color: #445666;
    }
    .webinar-wysiwyg {
        font-family: "Apercu Pro Light", Helvetica, Arial, Lucida, sans-serif;
        p {
            font-size: 17px;
            color: #445666;
        }
    }
}

/* right side */
.iti-webinar-form {
    display: flex;
    flex-direction: column;
    background: #00c2c2;
    padding: 1.75rem 3.4375rem 2.5rem;



    h2 {
        font-family: "Apercu Pro Regular";
        color: #141446;;
        /* font-size: 48px; */
        letter-spacing: -1px;
        line-height: 40px;
        margin-bottom: 1.25rem;
    }

    div {
        color: #445666;
        margin-bottom: 2rem;
        display: flex;
        flex-direction: column;
        label {
            margin-bottom: .5rem;
        }
        input[type="text"], input[type="email"] {
            background: #fff;
            border: 1px solid rgba(115,133,145,.3);
            border-radius: 3px;
            font-family: "Apercu Prro Regular";
            letter-spacing: -.5px;
            line-height: 1.59;
            padding: .5rem 0rem .5rem .6rem;
            width: 100%;
        }
        input[type="text"]:focus, input[type="email"]:focus {
            outline-offset: .2rem;
            outline-width: 1px;
            outline-color: rgba(0,0,0, .8);
            outline-style: solid;
        }
    }

    .webinar-error {
        color: black;
        margin: .5rem 0rem .5rem;
    }

    

    button {
        display:inline-block;
        cursor: pointer;
        font-family: "Apercu Pro Medium";
        font-size: calc(10 * 1px + (14 - 10)/ (1440 - 375) * (100vw - 375 * 1px));
        text-transform: uppercase;
        transition: color .3s ease-in-out;
        white-space: nowrap;
        transition: all .3s ease-out;
        background-color: #2d1e73;
        border: 1px solid #2d1e73;
        color: #fff;
        border-radius: 30px;
        padding-left: calc(20 * 1px + (28 - 20)/ (1440 - 375) * (100vw - 375 * 1px));
        padding-right: calc(20 * 1px + (28 - 20)/ (1440 - 375) * (100vw - 375 * 1px));
        height: calc(40 * 1px + (50 - 40)/ (1440 - 375) * (100vw - 375 * 1px));

        span {
            height: 6px;
            margin-left: calc(15 * 1px + (10 - 15)/ (1440 - 375) * (100vw - 375 * 1px));
            min-width: 30px;
            position: relative;
            transition: transform .3s ease-in-out;
            .line {
                background: #fff;
                height: 1px;
                position: absolute;
                right: 0;
                top: 50%;
                transform: translateY(-50%);
                width: 100%;
            }
            .arrow {
                border-bottom: 1px solid #fff;
                border-right: 1px solid #fff;
                height: 6px;
                width: 6px;
                position: absolute;
                right: 0;
                top: 50%;
                transform: translateY(-50%) rotate(-45deg);
            }
        }
    }

    button:active {
        color: #2d1e73;
        background: white;
        border: 1px solid #2d1e73;

    }
}