html, body{
    height: 100%;
    font-size: 1rem;
    font-family: "Open Sans", -apple-system, BlinkMacSystemFont, "Noto Sans TC",
    "Microsoft JhengHei", sans-serif;

}
body{
    background:url("../images/bg-login.png") center no-repeat;
    background-attachment: fixed;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 0;
    flex-direction: column;

}
.form-signin-wrap{

}
.loginForm{
    width: 100%;
    max-width: 490px;
    padding: 3.5rem;
    margin: auto;
    border: 1px solid #041B39;
    box-shadow: 2px 2px 0 rgba(7, 40, 86, 1);
    color: #000;
    background: #F8FBFC;
    display: flex;
    flex-direction: column;
    justify-content: center;  
    
}
.loginForm .checkbox {
    font-weight: 400;
}
.login-header{
    background: transparent;
    border: none;
    text-align: center;
    margin-bottom: 1.5rem;
    
}
.login-header h1{
    display: flex;
    justify-content: center;
}
.brand-logo{
    width: 54px;
    height: 54px;
    margin-right: 10px;
}
.login-content{
    padding: 1rem 0 .5rem;
    font-size: 1.125rem;
    color: #000;
    margin-bottom: 1.5rem;
}

.loginForm .form-control {
   border-color: #d9d9d9;
  border-radius: 0;
  box-shadow: 2px 2px 0 rgba(200, 205, 212, 1);
  height: calc(2em + 1rem + 2px);
  padding: .75rem 1.25rem;
}
.loginForm .form-control:focus {
    z-index: 2;
}
.login-footer{
    text-align: center;
}

.btn-signin{
    margin:.5rem auto 1rem;
    border-radius: 0;
  background: #e6ebf1;
  border-color: #0066cb;
  color: #0066cb;
  box-shadow: 2px 2px 0 rgba(80, 123, 165, 0.4);
}
.btn-signin:hover{
    background: #3e7bbd;
  border-color: #1f5794;
  color: #fff;
}
.btn-forget{
    border-radius: 0;
    color: #cc5c5c;
    position: relative;
    transition: all .3s ease-in-out;
}

.btn-forget:hover{
    color: #bd6a6a;
    transform: scale(1.05);
    
}

.copyright {
    font-size: .875rem;
    text-align: center;
    letter-spacing: 1px;
    margin: 1.5rem auto 1rem;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;

}
.copyright>img {
    display: inline-block;
    width: 16px;
    height: 16px;
    margin:0 4px;
}

body.swal2-height-auto{
    height: inherit !important;
}