:root{
    --color-main:#61DCAB;
    --color-second:#00175D;
    --font-main:"Poppins"
}
body{
    background: var(--color-second);
    font-family:var(--font-main);
    color:var(--color-main);
    margin:0;
    padding: 0;
}

/* Cor do texto do autocomplete */
input:-webkit-autofill {
    -webkit-text-fill-color: #CCCCCC !important;
}

.container{
    margin-top:7%;
}

.tittle-principal{
    color:var(--color-main);
    font-weight: 800;
    font-size:48px;
    margin-bottom: 70px;
}

.subtitulo{
    font-size:32px;
    font-weight: 700;
}

.text, .text-fim{
    font-size:20px;
    color:#FFFFFF;
    width:79%;
}
.text-fim{
    width: 100%;
}
.inputs{
    width:832px;
    gap: 35px;
}

label{
    font-size:22px;
    color:#ffffff;
    font-weight: 600;
    margin: 0;
    line-height:1.2;
}

label input{
    width: 100%;
    height: 51px;
    font-size: 18px;
    color: #CCCCCC;
    background: #00175D;
    border: 1px solid #ECECEC;
    border-radius: 8px;
    margin-top: 13px;
    margin-bottom: 15px;
    padding-left: 18px;
}

label input::placeholder{
    color:#CCCCCC;
    font-size: 18px;
    font-weight: 400;
}

small{
    font-size: 16px;
}

.text-footer{
    background: #ffffff;
    height: 75px;
    border-radius: 15px;
    gap:8px;
    color:#1C1C1C;
    margin-bottom: 80px;
}

.painel-url{
    background:#ffffff;
    padding: 30px;
    color:#1C1C1C;
    border-radius:15px;
    display: none;
}

.painel-url.active{
    display: block;
    margin-bottom: 80px;
}

.made-url-box{
    position: relative;
    border:1px solid #1C1C1C;
    border-radius: 6px;
    overflow-wrap: break-word;
}

.made-url-box span{
    position: absolute;
    top: -13px;
    left: 12px;
    background: #ffffff;
    color:#666666;
}

.made-url{
    margin: 0;
    padding: 15px 15px;
    width: 100%;
}

.title-painel-url{
    font-size:22px;
    font-weight: 700;
}

.text-painel-url{
    font-size:18px;
}

.copy-button{
    background:transparent;
    border:none;
    cursor: pointer;
    position: relative;
}

#svg-copy{
    transition: transform 0.3s ease-in-out;
}
#svg-copy.zoom{
    transform: scale(1.6);
}

.copy-button:focus{
  outline: none;
}

body .text-footer.none{
    display: none!important;
}

.my-select{
    display: inline-block;
    position: relative;
    width: 100%;
    margin: 15px 0 15px;
 }

 .my-select:after{
    content: " ";
    background-image: url(/img/arrow_back_ios.svg);
    background-position: center center;
    background-size: 100%;
    background-repeat: no-repeat;
    position: absolute;
    height: 100%;
    width: 25px;
    top: 0px;
    right: 0px;
    margin: 0px 17px 0px 0px;
    pointer-events: none;
 }

 .my-select > select{
    -moz-appearance: none;
    -webkit-appearance: none;
    -ms-appearance: none;
    border:1px solid #ECECEC;
    border-radius: 8px;
    width: 100%;
    height: 100%;
    padding: 15px 22px;
    background-color: var(--color-second);
    color:#CCCCCC;
    font-size: 18px;
 }

 body .hover-copy{
    opacity: 0;
 }

 .copy-button:hover .hover-copy{
    opacity: 1;
    top:70px;
    background-color: #CCCCCC;
    color:#ffffff;
    font-size: 10px;
    border-radius: 8px;
 }

 .gerar-url {
    display: flex;
    justify-content: space-between;
 }

.go{
    width: 191px;
    height: 49px;
    background-color: #61DCAB;
    color: #00175D;
    font-size: 22px;
    font-weight: 700;
    border-radius: 20px;
    border: 1px solid #61DCAB;
    cursor: pointer;
}
.go:focus{
    outline: none;
    border:none;
}

.clear {
    height: 49px;
    color: #61DCAB;
    font-size: 22px;
    font-weight: 700;
    border-radius: 20px;
    background-color: #00175D;
    border: 1px solid #61DCAB;
    cursor: pointer;
    padding-inline: 1rem;
    transition: .4s all;
}
.clear:hover {
    color: #00175D;
    background-color: #61DCAB;
    border: 1px solid #61DCAB;
}

 @media screen and (max-width:991px){
    .inputs{
        width: 100%;
    }
    .text-footer{
        padding: 15px;
        gap:10px;
        font-size:14px;
    }
    .text-footer svg{
        width: 40px;
    }
    .copy-button:hover .hover-copy {
        display: none;
    }

 }