/* BACKGROUND */

.tag_startup{
min-height:100vh;
background: radial-gradient(circle at top,#9013AB 0%,#1b0b2e 50%,#0a0614 100%);
padding:40px 0;
}

/* CARD PRINCIPAL */

.tag_startup .wow_content{
background:#121019;
border-radius:14px;
box-shadow:0 15px 40px rgba(0,0,0,0.6);
padding:35px !important;
border:1px solid rgba(255,255,255,0.05);
}

/* TÍTULO */

.tag_page_title{
font-size:26px;
font-weight:600;
color:#fff;
margin-bottom:25px;
}

/* IMAGEM */

.tag_startup_img img{
max-width:100%;
opacity:0.9;
}

/* STEPS */

.tag_steps li{
display:inline-block;
margin-right:10px;
}

.tag_steps li div{
display:flex;
align-items:center;
gap:8px;
background:#1e1a29;
padding:8px 14px;
border-radius:20px;
font-size:13px;
color:#bbb;
}

.tag_steps li.active div{
background:linear-gradient(45deg,#F5245F,#9013AB);
color:#fff;
}

/* FORM */

.tag_field{
position:relative;
display:block;
margin-bottom:18px;
}

.tag_field input,
.tag_field select{
width:100%;
height:48px;
border-radius:8px;
border:1px solid #2a2438;
background:#181423;
color:#fff;
padding:12px 14px;
font-size:14px;
transition:0.2s;
}

.tag_field input:focus,
.tag_field select:focus{
border-color:#F5245F;
box-shadow:0 0 0 2px rgba(245,36,95,0.15);
outline:none;
}

/* LABEL */

.tag_field span{
position:absolute;
top:-8px;
left:12px;
background:#121019;
padding:0 6px;
font-size:11px;
color:#aaa;
}

/* BIRTHDAY */

.d-flex select{
flex:1;
}

/* BOTÃO */

.btn-main{
background:linear-gradient(45deg,#F5245F,#9013AB);
border:none;
height:50px;
padding:0 40px;
font-weight:600;
font-size:15px;
border-radius:30px;
transition:0.2s;
}

.btn-main:hover{
transform:translateY(-2px);
box-shadow:0 6px 20px rgba(245,36,95,0.4);
}

/* AUTOCOMPLETE */

#address + div{
background:#1b1725 !important;
border:1px solid #2c2740 !important;
}

#address + div div{
color:#ddd;
}

#address + div div:hover{
background:#2a2438 !important;
}

/* MOBILE */

@media(max-width:992px){

.tag_startup_img{
display:none;
}

.tag_startup .wow_content{
padding:25px !important;
}

}