html, body {
    min-width: 980px;
}
body {

    font: 500 10px/1 "メイリオ", Meiryo, "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "ＭＳ Ｐゴシック", sans-serif;
    color: #333;
    text-align: center;
    letter-spacing: 0;
    background: #FFF;
    margin: 0;
    height: 100%;
    width: 100%;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    overflow: hidden;
}
.fullscreen-container {
    height: 100%; 
}

.wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 580px;
    width: 480px;
    outline: 2.5px ridge #007aff;
    border-radius: 2rem;
}

.logo-wrapper {
    display: flex; /* Flexboxを有効にする */
    justify-content: center; /* 子要素を水平方向の中央に配置 */
    align-items: center; /* 子要素を垂直方向の中央に配置 */
    width: 100%;
    height: 200px;
}
img.word-logo {
    width: 350px;
    height: 80px;
}
.message-wrapper {  
    display: flex; /* Flexboxを有効にする */
    justify-content: center; /* 子要素を水平方向の中央に配置 */
    align-items: center; /* 子要素を垂直方向の中央に配置 */
    width: 100%;
    height: 30px;    
    font-family: "Quicksand", sans-serif;
}

.form-wrapper {
    display: flex; /* Flexboxを有効にする */
    justify-content: center; /* 子要素を水平方向の中央に配置 */
    align-items: center; /* 子要素を垂直方向の中央に配置 */
    width: 100%;
    height: 250px;    

}

form {
  width:100%;
  margin: 4em auto;
  padding: 3em 2em 2em 2em;
  font-family: "Quicksand", sans-serif;
/*  background: #fafafa;*/
/*   border: 1px solid #ebebeb;*/
/*  box-shadow: rgba(0,0,0,0.14902) 0px 1px 1px 0px,rgba(0,0,0,0.09804) 0px 1px 2px 0px;*/
}

.group { 
  position: relative; 
  margin-bottom: 25px; 
}

input {
  font-size: 16px;
  padding: 10px 10px 10px 5px;
  -webkit-appearance: none;
  display: block;
  background: #fafafa;
  width: 100%;
  border: none;
  border-radius: 0;
  border-bottom: 1px solid #757575;
}

input:focus { outline: none; }


/* Label */

label {
/* color: #999; */
  font-size: 18px;
  font-weight: normal;
  position: absolute;
  pointer-events: none;
  left: 5px;
  top: 10px;
  transition: all 0.2s ease;
}


/* active */

input:focus ~ label, input.used ~ label {
  top: -20px;
  transform: scale(.75); left: -2px;
  /* font-size: 14px; */
  color: #4a89dc;
}


/* Underline */

.bar {
  position: relative;
  display: block;
  width: 100%;
}

.bar:before, .bar:after {
  content: '';
  height: 2px; 
  width: 0;
  bottom: 1px; 
  position: absolute;
  background: #4a89dc; 
  transition: all 0.2s ease;
}

.bar:before { left: 50%; }

.bar:after { right: 50%; }


/* active */

input:focus ~ .bar:before, input:focus ~ .bar:after { width: 50%; }

.button {
  position: relative;
  display: inline-block;
  padding: 12px 24px;
  margin: .3em 0 1em 0;
  width: 100%;
  vertical-align: middle;
  color: #fff;
  font-size: 18px;
  line-height: 20px;
  -webkit-font-smoothing: antialiased;
  text-align: center;
  letter-spacing: 1px;
  background: transparent;
  border: 0;
  font-family: "Quicksand", sans-serif;
  cursor: pointer;
  transition: all 0.15s ease;
}
.button:focus { outline: 0; }


/* Button modifiers */

.buttonBlue {
  background: #007aff;
/*  text-shadow: 1px 1px 0 rgba(39, 110, 204, .5);*/
}

.buttonBlue:hover { background: #357bd8; }


.siginin-wrapper {
    width: 100%;
    height: 60px;

    font-family: "Quicksand", sans-serif;

}

a {
  margin-top: 10px;
    color: #007aff;
}