/* *,
::before,
::after{
      box-sizing: border-box;
    border-width: 0;
    border-style: solid; 
}  */


body{
    /* background-color: rgb(41, 41, 41); */
    background: linear-gradient(90deg,rgba(0, 0, 0, 1) 0%, rgba(36, 36, 36, 1) 49%, rgba(66, 66, 66, 1) 100%);
    color: whitesmoke;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}  
#form{
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 20px;
    border-style: solid;
    border-color: grey;
    box-shadow: 0px 0px 30px 5px rgb(65, 65, 65);
    padding: 20px;
    width: 75%;
    /* background-color: rgba(0, 0, 0, 0.644); */
    background: linear-gradient(90deg,rgba(0, 0, 0, 1) 0%, rgba(36, 36, 36, 1) 49%, rgba(66, 66, 66, 1) 100%);;
}
#titulo{
    display: flex;
    justify-content: center;
    font-size: xx-large;
    margin-bottom: 20px;
    background-color: rgb(75, 75, 75);
    padding: 20px;
    border-radius: 20px;
}
.inputFormulario{
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
    /* background-color: rgb(75, 75, 75); */
    background: linear-gradient(90deg,rgba(36, 36, 36, 1) 0%, rgba(64, 64, 64, 1) 50%, rgba(92, 92, 92, 1) 100%);
    padding: 20px;
    border-radius: 20px;
    width: 95%;
    gap: 10px;
}
label{
    font-size: large;
    font-weight: bold;
    margin-bottom: 5px;
}
#nPhone{
    display: flex;
    flex-direction: row;
    border-radius: 5px;
    gap: 20px;
}
#phoneCode{
background-color: rgb(19, 19, 19);
    color: whitesmoke;
    border-radius: 5px;
    padding: 5px;
}
#phone{
    background-color: rgb(19, 19, 19);
    color: whitesmoke;
    border-radius: 5px;
}
.information{
    display: none;
}
p{
    font-size: large;
    margin: 5px;
    padding: 5px;
    border-radius: 10px; 
    border: 2px solid rgba(165, 165, 165, 0.329);
}
#countries{
   background-color: rgb(19, 19, 19);
   color: whitesmoke;
   border-radius: 5px;
   padding: 5px;
   font-size: medium;
}
.inputS{
    width: 97.4%;
    border-radius: 5px;
    background-color: rgb(19, 19, 19);
    color: whitesmoke;
    padding: 10px;
    font-size: medium;
}

#botonFormulario{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50%;
    padding: 15px;
    border-radius: 20px;
    background-color: rgb(110, 110, 110);
    font-size: large;
    color: whitesmoke;
}

#botonFormulario:disabled{
    background-color: rgb(75, 75, 75);
    color: grey;
    cursor: not-allowed;
}

.redes{
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(90deg,rgba(36, 36, 36, 1) 0%, rgba(64, 64, 64, 1) 50%, rgba(92, 92, 92, 1) 100%);
    color: whitesmoke;
    padding: 16px;
    margin: 20px;
    border-radius: 15px;
}
#name{
    display: flex;
    align-items: center;
}

/* Validacion-color */
.correcto{
    outline: 2px solid greenyellow;
}
.incorrecto{
    outline: 2px solid red;
}


/* Mobile */
@media (max-width: 768px) {
    .inputFormulario{
        display: flex;
        flex-direction: column;
    }
     .inputS{
        width: 95%;
    }
    #titulo{
        width: 120px;
        font-size: large;
    }
    .redes{
        width: 80%;
        justify-content: space-evenly;
    }
    
}

/* Tablet */
@media (min-width: 769px) and (max-width: 1024px) {
    
    .inputFormulario{
        display: flex;
        flex-direction: column;
    }
    .inputS{
        width: 97%;
    }
    .redes{
        display: flex;

    }
}