@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;900&display=swap');


:root {
    --white: #ffffff;
    --black: #000000;
    --blue: #1EBFF1;
    --primary_font: 'Montserrat', sans-serif;
    --primary_color: #E6C658;
}

*,
*:after,
*:before {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
}

body {
    height: 100vh;
    overflow: hidden;
    font-size: 100%;
    list-style-type: none;
    font-family: var(--primary_font);
}

p {
    margin: 0;
}

ol,
ul {
    list-style: none;
}

dd,
dl,
dt,
li,
ol,
ul {
    margin-top: 0;
    margin-bottom: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
}

body {
    background: url('../img/bg.png');
    background-size: cover;
    background-repeat: no-repeat;
}

body.bg2 {
    background: url('../img/bg2.png');
    background-size: cover;
    background-repeat: no-repeat;
}

body.bg3 {
    background: url('../img/bg3.png');
    background-size: cover;
    background-repeat: no-repeat;
}

.bg_yellow {
    background-color: #E6C658;
}

.bg_red {
    background-color: #EC4747;
}

.center-div {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    /* 100% del alto de la ventana */
}

/* Estilo personalizado para el logotipo */
.logo {
    text-align: center;
    margin-bottom: 20px;
}

.welcome {
    font-family: var(--primary_font);
    font-weight: 700;
    color: var(--primary_color);
    font-size: 42px;
    text-align: center;
}

.form-group {
    padding-top: 20px;
    min-width: 330px;
}

.form-group input {
    background: transparent;
    border: none;
    border-radius: 0px;
    border-bottom: 1px solid #A9A9A9;
    color: #cccccc;
}

.form-group input:focus {
    background: transparent;
}

.btn-cta {
    background: #FFF;
    color: #4BBABA;
    font-weight: 600;
    font-size: 16px;
    border: none;
    border-radius: 40px;
    padding: 15px 5px;
    -webkit-box-shadow: 0px 10px 9px 0px rgb(0 0 0 / 8%);
    -moz-box-shadow: 0px 10px 9px 0px rgb(0 0 0 / 8%);
    box-shadow: 0px 10px 9px 0px rgb(0 0 0 / 8%);
}

.btn-cta:active {
    color: #fff !important;
    background: #4BBABA !important;
    border: none;
}

input#acepto {
    border-radius: 0px;
    border: 1px solid #cccccc;
}

.step2 {
    position: absolute;
    top: 5%;
     left: 50%;
    transform: translateX(-50%);
}

.glass {
    margin: 32px;
    padding: 36px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    color: #016968;
    text-align: center;
}

.glass h3 span {
    font-weight: 700;
}


.ruleta {
    position: absolute;
    bottom: -16.5em;
    left: 50%;
    transform: translateX(-50%);
}

.ruleta img {
    max-width: 500px;
    -webkit-transition: -webkit-transform 2s ease-out;
    z-index: 1;
}

.selector img {
    max-width: 50px;
    position: absolute;
    z-index: 999;
    bottom: 40%;
    left: 50%;
    transform: translateX(-50%);
}

.gano h1 {
    font-size: 30px;
    color: #FFF;
    font-weight: 700;
    word-wrap: break-word;
}

.alert {
    line-height: 18px;
}

#selector {
    max-width: 50px;
    position: absolute;
    top: -8%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 999999;
}

.logo_roleta {
    max-width: 16em;
}

@media (min-height: 896px) {
    .ruleta {
        position: absolute;
        bottom: -32%;
        left: 50%;
        transform: translateX(-50%);
    }
}

@media only screen and (min-width : 375px) and (min-height : 812px) {
    .ruleta {
        position: absolute;
        bottom: -32%;
        left: 50%;
        transform: translateX(-50%);
    }
}
#btnSubmit:disabled{
    color: #cccccc;
    background: grey;
}