@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;700&display=swap');


*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    font-family: 'Roboto', sans-serif;
    background-color: #e5e5f7;
    background-image:  radial-gradient(#8387db 0.5px, transparent 0.5px), radial-gradient(#8387db 0.5px, #e5e5f7 0.5px);
    background-image: url('http://www.agpar.com.py/contenidos/uploads/2018/05/20250721112745.jpg');
    /* background-size: 20px 20px; */
    /* background-size: 1380px 650px; */
    background-size:100% 105vh;
    /* background-position: 0 0,10px 10px; */
    display: flex;
    height: 100vh;
    }
.form{
    /* background-color: #fff; */
    background-color: rgba(255, 255, 255, 0.7);
    margin: auto;
    width: 90%;
    max-width: 400px;
    padding: 4.5em 3em;
    border-radius: 10px;
    box-shadow: 0 5px 10px -5px rgb(0, 0, 0 / 30%);
    text-align: center;
}
ul{
    text-align: left;
}
.form__title{
    font-size: 2rem;
    margin-bottom: .5em;
}
.form__container{
    margin-top: 3em;
    display: grid;
    gap: 2.5em;
}
.form__group{
     position: relative; 
    --color: #5757577e;
}
.form__input{
    width: 100%;
    background: none;
    color: #706c6c;
    font-size: 1rem;
    padding: .6em .3em;
    border: none;
    outline: none;
    border-bottom: 1px solid var(--color);
    font-family: 'Roboto', sans-serif;
}

.form__input :focus,
.form__input:not(placeholder-shown){
    color: #4d4646;

}

.form__input:focus + .form__label,
.form__input:not(:placeholder-shown) + .form__label{
    transform: translateY(-12px) scale(.7);
    transform-origin: left top;
    color: #3866f2;
}
.form__label{
    color: var(--color);
    cursor: pointer;
     position: absolute; 
    top: 0;
    left: 5px;
    transform: translateY(10px);
    transition: .5s, color .3s;
}
.form__submit{
    background: #3866f2;
    color: #fff;
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    font-size: 1rem;
    padding: .8em 0;
    border: none;
    border-radius: .5em;
}
.form__line{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #3866f2;
    transform: scale(0);
    transform: left bottom;
    transition: transform .4s;
}

.form__input :focus ~ .form__line,
.form__input:not(placeholder-shown) ~ .form__line{
    transform: scale(1);
}
.okay{
    display: flex;
    margin: auto;
    text-align: center;
    font-size: 1rem;
    width: 80%;
    padding: 12px;
    background-color: #4e8;
    color: #fff;
}
.bad{
    display: flex;
    margin: auto;
    text-align: center;
    font-size: 1rem;
    width: 80%;
    padding: 12px;
    background-color: #a22;
    color: #fff;
}
.bolillero{
    width: 90%;
    max-width: 700px;
    /* height: 100vh; */
    /* display: flex;
    align-items: center;
    justify-content: center; */
    margin: auto;
    padding: 4.5em 3em;
    border-radius: 10px;
    box-shadow: 0 5px 10px -5px rgb(0, 0, 0 / 30%);
    text-align: center;
    background: #fff;
}
.ganadores{
    width: auto;
    color: var(--color);
    cursor: pointer;
    font-size: 30px;
    /* position: absolute; */
    top: 0;
    left: 5px;
    transform: translateY(10px);
    transition: .5s, color .3s;
    padding: 25px;
    margin: 20px 0 0 0;
}
.container{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    margin: auto;
    align-items: center;
    justify-content: center;
    /* border-radius: 50%; */
}
.sortear{
    width: 200px;
    background: #3866f2;
    color: #fff;
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    font-size: 1rem;
    padding: .8em 0;
    border: none;
    border-radius: .5em;
    z-index: 4;
    margin: 30px 0 -20px 0;
}
.ruleta{
    /* width: 50%;
    height: 50%; */
    margin: 25px 0 0 0;
    animation: spin 1s ease infinite;
    /* display: none; */
}
.inhabilitar{
    display: none;
}
.marcador{
    position: absolute;
    clip-path: polygon(0 10px,60px 0,60px 20px);
    background: #ff0000;
    width: 60px;
    height: 20px;
    top: 50%;
    right: 35%;
    z-index: 10;
    box-shadow: 0 0 3px #33333399;
}

/* .spinner {
    border: 4px solid rgba(0, 0, 0, 0.1);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border-left-color: #09f;
    display: none;
  
    animation: spin 1s ease infinite;
  } */
  
  @keyframes spin {
    0% {
      transform: rotate(0deg);
    }
  
    100% {
      transform: rotate(360deg);
    }
  }
@media (max-width:1425px){
    .form__title{
        font-size: 1.8rem;
    }
}


