@charset='utf-8';

:root{
  --bg: #0c90a1;
  --color: #0c90a1;
  --border: 1px solid #0c90a1;
  --shadow: 0 8px 20px rgba(0, 0, 0, 0.18), 0 1px 3px rgba(0, 0, 0, 0.12);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-size: 24px;
  font-family: "Noto Sans JP", "Noto Sans", system-ui, sans-serif;
}

html {
  margin: 0;
  padding: 0;
  height: 100%;
  overflow-x: hidden;
  overscroll-behavior-x: none;
}
body{
  background: var(--bg);
  -webkit-user-select: none; /* Android WebView / Chrome */
  -ms-user-select: none;
  user-select: none;
  max-width: 1280px;
  height: 100vh;
  margin: 0 auto;
  overflow-x: hidden;
  overscroll-behavior-x: none;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
  tap-highlight-color: transparent;
}
:focus {
  outline: none;
}
#loginForm input,
#loginForm button {
  -webkit-user-select: text;
  -ms-user-select: text;
  user-select: text;
  width: 100%;
  height: 52px;
  box-sizing: border-box;
  font-size: 20px;
  padding-left: 20px;
  padding-right: 20px;
  border-radius: 99px;
  border: var(--border);
  background: #eee;
}

#login .main{
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

#loginForm{
  position: relative;
  background: #fff;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 400px;
  padding: 70px 70px;
  gap: 48px;   
  box-shadow: var(--shadow);
}
#loginForm .title{
  position: absolute;
  top: -80px;
  color: #fff;
}

#loginForm .exp{
  display: block;
  font-size: 18px;
  width: 100%;
  text-align: left;
  margin-bottom: 10px;
}
#loginForm .wrap{
  width: 100%;
}
#loginForm button{
  margin-top: 26px;
  background: var(--bg);
  color: #fff;
}
#loginForm button:active{
  transform: translateY(2px);
  box-shadow: 0 1px 4px rgba(0,0,0,0.25);
}


/* Swal */
.swal2-popup .swal2-html-container { text-align: left;}
.swal2-popup{
  font-size: 14px !important;   
  width: 380px !important;      
  max-width: 70vw !important;
}
.swal2-icon {
  font-size: 1.2em;
}
.swal2-icon.swal2-error{
  border-width: 0.18em !important;
}
.swal2-icon.swal2-error .swal2-x-mark-line-left,
.swal2-icon.swal2-error .swal2-x-mark-line-right{
  width: 2.25em !important;
  height: 0.19em !important;
  top: 1.65em !important;
}
.swal2-icon.swal2-error .swal2-x-mark-line-left{
  left: 0.64em !important;
}
.swal2-icon.swal2-error .swal2-x-mark-line-right{
  right: 0.64em !important;
}

.swal2-confirm,.swal2-cancel{
  font-size: 18px;
  min-width: 100px;
}
