html{
    scrollbar-width: none;
}
body {
    margin: 0; /* remove default margin */
    scrollbar-width: none; /* Also needed to disable scrollbar Firefox */
    -ms-overflow-style: none;  /* Disable scrollbar IE 10+ */
    overflow-y: scroll;
}
body::-webkit-scrollbar {
    width: 0px;
    background: transparent; /* Disable scrollbar Chrome/Safari/Webkit */
}

body{
    margin: 0px;
    padding: 0px;
    height: 100vh;
    width: 100%;
    overflow: hidden !important;
    background-color: #de7373;
    background-size: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    }

.box-in{
    background-color: white;
    width: 300px;
    min-width: 300px;
    height: 450px;
    margin: 100px 100px;
    border-radius: 20px;
    border: 2px solid red;
    display: flex;
    flex-flow: column;
    align-items: center;
}

.logo{
    width: 150px;
    height: 120px;
    border-radius: 25% 25%;
    margin-top: -25%;
    border: 2px solid #003671;
    background-color: white;
    overflow-x: hidden !important;
    display: flex;
    justify-content: center;
    align-items: center;
}

.form-container{
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    margin: auto 0px;
}

.form{
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
}

.labels{
    font-family: Poppins;
    font-size: 20px;
}

.inputs{
    font-family: Poppins;
    text-align: center;
    font-size: 20px;
    border: none;
    border-bottom: 2px solid black;
    width: 200px;
    margin-bottom: 50px;
    transition: border .3s;
    
}

.inputs:focus{
    outline: 2px solid #EC1C2A;
    border-bottom: 2px solid red;
    border-radius: 5px;
}

.inputs:hover{
    border-bottom: 2px solid red;
}

.button-submit{
    width: 200px;
    height: 50px;
    border-radius: 15px;
    font-family: Poppins;
    font-size: 20px;
    background-color: #808080;
    color: white;
    transition: background .3s;
}

.button-submit:hover{
    background-color: #EC1C2A;
}

.img-container{
    margin-bottom: 60px;
}

.alerta{
    margin: 10px 0px;
    color: red; 
}


/*##############################################
######## estilos.css por Carlos Escobar ########
##############################################*/