@import url('https://fonts.googleapis.com/css2?family=Source+Sans+3:ital,wght@0,200..900;1,200..900&display=swap');

* {
    transition: .3s;
    outline: none;
}

html,
body {
    margin: 0;
    background: #000;
    width: 100%;
    height: 100%;
    color: #eee;
    font-family: 'Source Sans 3';
    max-width: 600px;
    margin: auto;
    background: linear-gradient(to bottom, #2C2C2C, #181818);
    overflow: hidden;
}

.one,
.two,
.three {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: start;
    height: 100%;
    width: 100%;
    overflow: auto;

    position: relative;

    & h1 {
        text-align: center;
        width: calc(100% - 12px);
        margin-top: 0px;
    }

    .logo {
        max-width: 500px;
        width: calc(100% - 12px);
    }

    .item {
        display: flex;
        position: relative;
        width: 100%;
        align-items: center;
        justify-content: center;

        label {
            position: absolute;
            top: -12px;
            left: 24px;
            background: linear-gradient(to right, #8A2A50, #E990B3);
            padding: 0px 12px;
            border-radius: 60px;
        }

        input {
            width: calc(100% - 48px);
            border-radius: 60px;
            border: 0;
            background: linear-gradient(to right, #FFFFFF, #FFE3EE);
            padding: 18px 12px;
            margin-bottom: 24px;
            font-family: inherit;
            font-size: 20px;
            font-weight: 700;
            color: #000a;
            text-align: left;
        }

    }

    & .instagram,
    & .maps {
        display: flex;
        width: calc(100% - 24px);
        background: linear-gradient(to right, #FFFFFF, #FFE3EE);
        border-radius: 60px;
        justify-content: space-between;
        text-decoration: none;
        margin: 18px;

        &:hover,
        &:active {
            filter: brightness(1.1);
        }

        img {
            height: 45px;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 50%;
            object-fit: contain;
            padding: 9px 0;
        }

        span {
            display: flex;
            align-items: center;
            justify-content: center;
            background: #E597B6;
            width: 50%;
            height: 100%;
            border-radius: 0 60px 60px 0;
            color: #fff;
            font-weight: 800;
            font-size: 18px;
            flex-direction: column;
            i{
                font-size: 3.5vw
            }
        }
        .check_true{
            display: none;
            width: 24px;
            height: 24px;
        }
        width: calc(100% - 72px);
        &.show_svg{
            .check_true{
                display: flex;
                fill: #84d978;
                position: absolute;
                right: -30px;
            }
        }

    }

    .ou{
        position: relative;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 6px auto;
        &:after{
            content:'';
            width: 100%;
            width: calc(100% - 24px);
            height: 1px;
            position: absolute;
            left: 0;
            left: 12px;
            top: 50%;
            border-radius: 60px;
            background: linear-gradient(to right, #0000, #fff3, #0000);
        }
        span{
            background: #444;
            border-radius: 60px;
            padding: 3px 24px;
            z-index: 2;
            font-size: 12px;
        }
    }

    & .codigo {
        background: linear-gradient(to right, #FFFFFF, #FFE3EE);
        color: #000a;
        font-size: 42px;
        padding: 18px 0;
        border-radius: 24px;
        width: calc(100% - 30px);
        margin-top: 24px;
    }

    button {
        margin-top: auto;
        background: linear-gradient(to right, #8A2A50, #E990B3);
        border: 0;
        border-radius: 60px;
        width: calc(100% - 24px);
        margin-bottom: 24px;
        color: #fff;
        padding: 12px 0;
        font-size: 18px;
        font-weight: 500;
        cursor: pointer;

        &:hover,
        &:active {
            filter: brightness(1.1)
        }
    }

    button {
        background: #fff1;
        color: #fff2;
        pointer-events: none;

        &.active {
            background: linear-gradient(to right, #8A2A50, #E990B3);
            color: #fff;
            pointer-events: all;
        }
    }

    &.one{
        button{
            margin-bottom: 60px;
        }
    }

    .concordo {
        text-align: center;
        font-size: 12px;
        position: absolute;
        bottom: 9px;
        left: 0;
        width: 100%;

        input{
            filter: hue-rotate(105deg);
            opacity: .7
        }
        a{
            color: #E597B6;
        }
    }

    &.active {
        display: flex;
    }
}

.politica{
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #000d;
    display: flex;
    flex-direction: column;
    .conteudo{
        width: calc(100% - 48px);
        margin: auto;
        height: calc(100% - 60px);
        overflow: auto;
        background: linear-gradient(to bottom, #2C2C2C, #181818);
        border-radius: 12px;
        padding: 12px;
        margin-top: 6px;
    }
    button{
        background: linear-gradient(to right, #8A2A50, #E990B3);
        color: #fff;
        padding: 18px 0;
        border: 0;
        border-radius: 12px;
        width: calc(100% - 24px);
        margin: 6px auto;
        font-size: 18px;
        font-weight: 500;
        cursor: pointer;
    }
}

@media only screen and (min-width: 600px) {
    .one, .two, .three {
        & .instagram, & .maps {
            & span {
                & i {font-size: 18px}
            }
        }
    }
}