/*
 * Specific styles of signin component
 */
/*
 * General styles
 */

body {
        font-family: 'Open Sans', sans-serif;
        background-color: #FFF;
        color: #000
      }
      .form-signin {
        max-width: 400px;
      }
      .left { text-align: left; }
      .center { text-align: center; }
      #btn_login { background-color: #0075a7; border-color: #0075a7; }

      .wrapper{
        min-height: 100vh;
        position: relative;/*←相対位置*/
        padding-bottom: 120px;/*←footerの高さ*/
        box-sizing: border-box;/*←全て含めてmin-height:100vhに*/
      }

      footer{
        width: 100%;
        background-color: #ebedef !important;
        text-align: center;
        padding: 3px 0 !important;

        position: absolute;/*←絶対位置*/
        bottom: 0; /*下に固定*/
      }

 .text-red-600 {
     color: red;
 }