

html, body {
    background-color: #e8f6f9;
   
    height: 100%;
    margin: 0;
}

body {
    
    min-height: 100vh;
    flex-direction: column;
  }




  main {
    flex: 1 0 auto;
    min-height: 100vh;
    /* Resta la altura de tu footer */
    padding-bottom: [Altura del Footer];
  }

#logo_img{
    width: 200px;
    position: relative;
    top: -80px;

}

.card-custom {
    
    border-radius: 10px;
    border-top: 10px solid #88e7fe; /* Color sólido en la parte superior */
    border-right: 10px solid #88e7fe; /* Color sólido en el lado derecho */
    box-shadow: none;
  

}

.input-field{
    position: relative;
    top: -60px;

}

#btn_login{
    background-color: #88e7fe;
}
.btn-initial-caps{
    text-transform: capitalize;
}

footer {
    position: absolute;
    bottom: 0;
    width: 100%;
}

