@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100;200;300;400;500;600;700;800;900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.cdnfonts.com/css/graphik-trial');


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}
body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}
::selection {
    color: #fff;
    background: #43AFFC;
}
/*inicio div principal de la app*/
.wrapper {
    width: 447px;
    box-shadow: 7px 7px 20px rgba(0, 0, 0, 0.05);
}
.wrapper header {
    display: flex;
    font-size: 21px;
    font-weight: 500;
    color: white;
    padding: 1em 1em;
    align-items: center;
    min-height: 10vh !important;
}
header i {
    font-size: 0em;
    cursor: pointer;
    margin-right: 8px;
}
.wrapper.active header i {
    margin-left: 5px;
    font-size: 30px;
}
.wrapper .input-part {
    margin: 20px 25px 30px;
    margin-top: 0 !important;
}
.wrapper.active .input-part {
    display: none;
}
.input-part .info-txt {
    display: none;
    font-size: 17px;
    text-align: center;
    padding: 12px 10px;
    border-radius: 7px;
    margin-bottom: 15px;
}
.input-part .info-txt.error{
    color: #721c24;
    display: block;
    background: #f8d7da;
    border: 1px solid #f5c6cb;
}
.input-part input,
select {
    font-size: .8em;
}
.input-part input:is(:focus, :valid) {

}
.input-part input::placeholder {
    color: #bfbfbf;
}
.input-part :where(input, button){
    width: 100%;
    height: 55px;
    border: none;
    outline: none;
    font-size: 18px;
    border-radius: 7px;
  }
  input[type=number]::-webkit-inner-spin-button, 
  input[type=number]::-webkit-outer-spin-button { 
    -webkit-appearance: none; 
    margin: 0; 
  }
  input[type=number] { -moz-appearance:textfield; }
  .btn-primary {
    color: #fff!important;
    background-color: #CE181E!important;
    border-color: #CE181E!important; 
  }
    .btn-primary:hover {
      color: #fff!important;
      background-color: #af141a!important;
      border-color: #a51318!important; 
  }
.input-part .separator {
    height: 1px;
    width: 100%;
    margin: 25px 0;
    background: #ccc;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.separator::before {
    color: #b3b3b3;
    padding: 0 1em;
}
.input-part button {
    color: #fff;
    cursor: pointer;
    transition: 0.3s ease;
}
.input-part button:hover {
   opacity: .7;
}
.shadow-3d {
    border-radius: 0;
    overflow: visible !important;
    position: relative;
    margin-bottom: 3rem !important;
}
.shadow-3d::before {
    background: var(--gradient-bg);
    content: "";
    display: block;
    height: 10px;
    left: -3px;
    position: absolute;
    top: 100%;
    transform: skew(-36deg, 0deg);
    width: 100%;
}
.shadow-3d::after {
    background-color: #727272;
    opacity: .4;
    content: "";
    display: block;
    height: 100%;
    left: -10px;
    position: absolute;
    top: 5px;
    transform: matrix(1, -1.1, 0, 1, 2, 0);
    width: 10px;
}
.hide {
    display: none;
}
.form-check-input {
    padding: 0 !important;
    margin: 0 !important;
    height: 10px !important;
    width: 10px !important;
    border-radius: 0 !important;
}
.facebook:hover {
    background-color: #242424!important;
}
.google:hover {
    background-color: #242424!important;
}
.playstation:hover {
     background-color: #242424!important;
}
.steam:hover {  
    background-color: #242424!important;
}
.xbox:hover {  
    background-color: #242424!important;
}
.twich:hover {  
    background-color: #242424!important;
}
.alertSend {
    color: #0275d8!important;
    font-weight: bold;
    background-color: #5bc0de!important;
    border: solid 1px #5bc0de!important;
    opacity: .9!important;
}
.effect:hover{
    cursor: pointer;
    opacity: .5;
}
.contenedor{
    padding-left: 0!important;
    padding-right: 0!important;
}
.popup-wrapper {
    background: rgba(0, 0, 0, 0.5);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
}
 
.popup {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    text-align: center;
    width: 100%;
    background: rgb(100 100 100 / 95%)!important;;
    margin: 0% auto;
    padding: 20px;
    position: relative;
    max-width: 800px!important;
}
 
.popup a {
    background: salmon;
    color: white;
    text-decoration: none;
    padding: 6px 10px;
    margin: 30px auto;
    display: block;
    width: 50%;
}
 
.popup a:hover {
    background: palevioletred;
    transition: all 0.2s;
}
 
.popup-close {
    position: absolute;
    top: 5px;
    right: 15px;
    cursor: pointer;
    font-size: 1.2rem;
    border: solid 1px;
    border-radius: 100%;
    padding: 0 10px;
}
.popup-close:hover {
    background: #CE181E!important;
    opacity: .8;
}
.cancel{
    border: solid 1px white;
    border-radius: 30px;
    padding: 5px 25px;
    color: white;
}
.confirm{
    border: none;
    border-radius: 30px;
    padding: 5px 25px;
    color: white;
    font-weight: bold;
}
.confirm:hover{
    opacity: 0.6;
    color: #CE181E;
}
.cancel:hover{
    opacity: 0.6;
    color: #CE181E;
}
#error_credentials_2 {
    color: #CE181E!important;
    font-size: 1em!important;
    font-weight: bold!important;
}
.list-pass {
    list-style: none;
    padding: 0px;
    margin-left: 10px;
}
#len{
    color: #CE181E;
}
#numbers{
    color: #CE181E;
}  
#mayus{
    color: #CE181E;
}  
#lower{
    color: #CE181E;
}
#special{
    color: #CE181E;
} 
#same{
    color: #CE181E;
}

#lenok{
    color: #4BB543;
    font-weight: bold;
    text-decoration: line-through;
}
#numbersok{
    color: #4BB543;
    font-weight: bold;
    text-decoration: line-through;
}  
#mayusok{
    color: #4BB543;
    font-weight: bold;
    text-decoration: line-through;
}  
#lowerok{
    color: #4BB543;
    font-weight: bold;
    text-decoration: line-through;
}
#specialok{
    color: #4BB543;
    font-weight: bold;
    text-decoration: line-through;
} 
#sameok{
    color: #4BB543;
    font-weight: bold;
    text-decoration: line-through;
}  

/*fin div principal de la app*/
/*mediaquery 550px (el div principal-wrapper-ocupa el ancho el alto de la pantalla)*/
@media (max-width: 450px) {
    body {
        background: #242424 !important;
    }
    .wrapper {
        width: 100vw!important;
        object-fit: cover;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        z-index: 0;
        border-radius: 0;
    }
    .wrapper {
        height: 100%;
        margin-bottom: 0 !important;
    }
    .columnas {
        flex-direction: column !important;
    }
    .columnas .js-form-message {
        padding: .5em;
    }
    .shadow-3d::before {
        content: none !important;
    }
    .shadow-3d::after {
        content: none !important;
    }
    .wrapper {
        box-shadow: none !important;
    }

}
@media (max-width: 420px) {
    #buttonForm1,
    #buttonForm2 {
        display: none;
    }

}

.social-buttons {
  padding:3em;
  display: flex;
  text-align: center;
  flex-flow: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
}


#btn-send {
    height: auto;
display: flex;
align-items: center;
justify-content: center;
line-height: 1.4em;
padding: .5em 0;
padding-top: .75em;
}