* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    background: #efeef0;
    font-family: "Helvetica", sans-serif;
}

.slide-submit {
    position: relative;
    width: 100%;
    height: 44px;
    /* line-height: 50px; */
    /* background: white; */
    /* padding: 4px; */
    border: 1px solid #dddddd;
    border-radius: 10px;
}
.slide-submit button {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    z-index: 10;
    width: 50%;
    /* margin: 4px; */
    /* width: 50%; */
    /* font-weight: bold; */
    /* color: white; */
    /* border: none; */
    /* padding: 10px; */
    /* border-radius: 2px; */
    transition: all 200ms linear;
    cursor: pointer;
}
.slide-submit button.submitted {
    width: 100%;
    opacity: 0.8;
}
.slide-submit button.submitted + label {
    display: none;
}
.slide-submit label {
    position: absolute;
    z-index: 8;
    top: 0px;
    right: 0px;
    width: 50%;
    font-size: 14px;
    text-align: center;
    color: #a7adb3;
    font-weight: bold;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta {
    /* padding: 10px 10px; */
    text-decoration: none;
    color: white;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    border: none;
}

.cta:focus {
    outline: none;
}

.cta .second {
    transition: 0.5s;
    margin-right: 0px;
}

.cta .second {
    transition: 0.5s;
    /* margin-right: 45px; */
}

.second {
    width: 100%;
    /* margin-left: 30px; */
    position: relative;
    /* top: 12%; */
}

.one {
    transition: 0.4s;
    transform: translateX(-60%);
}

.two {
    transition: 0.5s;
    transform: translateX(-30%);
}

.cta .three {
    animation: color_anim 1s infinite 0.2s;
}

.cta .one {
    transform: translateX(0%);
    animation: color_anim 1s infinite 0.6s;
}

.cta .two {
    transform: translateX(0%);
    animation: color_anim 1s infinite 0.4s;
}

@keyframes color_anim {
    0% {
        fill: white;
    }

    50% {
        fill: #caa470;
    }

    100% {
        fill: white;
    }
}
