html{background:#fff !important;}
html,
body {
    height: 100%;
    overscroll-behavior: none;
    background: none;
    background-color: unset !important;
    -webkit-tap-highlight-color: initial !important;
}

body{

}

body::before{
    content:"";
    position: fixed; inset:0;              /* 画面全体 */
    background: url(/img/login/mv_bg.png) center/cover no-repeat;
    z-index:-1;                             /* すべての下 */
}

.app-header{
    position: sticky;
    top: 0;
    z-index: 1030; /* 前面に */
}

.app-wrapper{
    backdrop-filter: blur(3px);
    background-color: rgba(250, 250, 250, 0.1);
    opacity: 0;
    animation: fadeInBg .75s ease forwards;
}

.loginbtn{height: 40px;}


@keyframes fadeInBg {
    to {
      opacity: 1;
    }
  }


.no-scrollbar {
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.no-scrollbar::-webkit-scrollbar {
display: none;
}

.scroll-area {
overflow: auto;
}

#termsForm{
    display: flex;
    flex-direction: column;
    align-items: center;
}

footer{
 background-color: #222 !important;
 bottom:0;
 width:100%;
 margin-top:auto;
}
