/* Importacion de la Fuente */
@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&display=swap');
/* Paleta de Colores */
:root{
    --withe-etb: #FFFFFF;
    --black-etb: #1D1D1D;
    --bblue-etb: #044A8B;
    --wblue-etb: #0092BC;
    --orange-etb: #FF6523;
    --grey-etb: #C8C8C8;
}
/* Paleta de Colores */

/* Reinicio CSS */
*{ 
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
}
/* Reiniciar el CSS */

/* Cuerpo de la pagina */
body{
    background-color: var(--bblue-etb);
    font-family: "Nunito Sans", sans-serif;
    overflow: clip;
    transform: scale(1.01);
}
/* Cuerpo de la pagina */

/* Estilos de la portada */
.container_Portain{
    position: absolute;
    display: grid;
    right: 0;
    color: var(--withe-etb);
    margin: 380px 40px 0 0;
}

.container_Portain span{
    font-weight: 900;
    font-size: 90px;
    text-align: left;
    text-shadow: 1px 2px 4px rgba(255, 255, 255, 0.50);
}

.container_Portain img{
    width: 108px;
    height: 79px;
    right: 0;
    bottom: 385px;
    position: absolute;
        box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.05);
}

#belived_Text{
    position: absolute;
    right: 0;
}
/* Estilos de la portada */

/* Estilos del apartado de Login y Creacion */
.container_Login{
    background-color: #fff;
    width: 50%;
    height: 1080px;
    padding: 90px 0;
}

.tittle{
    font-weight: 900;
    font-size: 82px;
    margin-left: 90px;
    padding-top: 50px;
    text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.25);
}

p{
    font-size: 24px;
    color: var(--grey-etb);
    margin-left: 90px;
    text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.05);
}

#user_Text{
    margin-top: 80px;
}

#pass_Text{
    margin-top: 60px;
}

input{
    border: 3px solid rgba(29, 29, 29, 0.5);
    color: var(--black-etb);
    font-family: "Nunito Sans", sans-serif;
    font-size: 16px;
    border-radius: 50px;
    width: 762px;
    height: 77px;
    margin: 20px 0 0 90px;
    padding-left: 25px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.05);
}

input:focus{
    border-color: var(--bblue-etb);
}

.container_Control{
    display: grid;
    margin-top: 80px;
    text-align: center;
}

.btn_Start{
    width: 462px;
    height: 77px;
    font-size: 48px;
    font-weight: 900;
    font-family: "Nunito Sans", sans-serif;
    background-color: var(--bblue-etb);
    color: var(--withe-etb);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    margin-left: 230px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.25);
}

.container_Control p{
    margin-top: 40px;
}

.container_Control span{
    margin-right: 125px;
    color: var(--bblue-etb);
    cursor: pointer;
}

.container_Create{
    background-color: #fff;
    width: 50%;
    height: 1080px;
    padding: 70px 0;
    display: none;
}

#user_Text2{
    margin-top: 50px;
}

#pass_Text2{
    margin-top: 30px;
}

#cell_Text2{
    margin-top: 30px;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.container_Control2{
    display: grid;
    margin-top: 50px;
    text-align: center;
}

.container_Control2 p{
    margin-top: 20px;
}

.container_Control2 span{
    margin-right: 125px;
    color: var(--bblue-etb);
    cursor: pointer;
}
/* Estilos del apartado de Login y Creacion */