@charset "utf-8";
/* ログインcss */

*, *:before, *:after {
  box-sizing: border-box;
}
body {
  background-color: #f8f8f8;
  color: #555;
  font-family: --font-family-sans-serif: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}

.my-4s {
  margin-top: 2rem !important;
  margin-bottom: 2rem !important;
}

.login-txt {
  border-bottom: 1px solid #c2cfd6;
}

.login-form-wrap {
  border-radius: 10px;
}

.login-form {
  padding: 0;
}

h1 {
  font-size: 2.2rem;
}

/*=========================================
テキストエリア
=========================================*/
.group {
  position: relative;
}

.group input {
  font-size: 16px;
  padding: 10px 10px 10px 5px;
  display: block;
}

.group input:focus {
  outline: none;
}

/* label ================================== */
.text-group label {
  color: #9fa1a4;
  font-size: 16px;
  font-weight: normal;
  position: absolute;
  pointer-events: none;
  left: 16px;
  top: 11px;
  transition: 0.2s ease all;
  -moz-transition: 0.2s ease all;
  -webkit-transition: 0.2s ease all;
  -o-transition: 0.2s ease all;
  -ms-transition: 0.2s ease all;
}

/* active state */
.text-group input:focus ~ label,
.text-group input:valid ~ label {
  top: -13px;
  left: 8px;
  font-size: 14px;
  color: #0962d6;
  background-color: #fff;
  padding: 0 10px;
}

/* BOTTOM BARS ============================ */
/*
.text-group .bar {
  position: relative;
  display: block;
  width: 300px;
}

.text-group .bar:before,
.text-group .bar:after {
  content: '';
  height: 2px;
  width: 0;
  bottom: 1px;
  position: absolute;
  background: #5264AE;
  transition: 0.2s ease all;
  -moz-transition: 0.2s ease all;
  -webkit-transition: 0.2s ease all;
  -o-transition: 0.2s ease all;
  -ms-transition: 0.2s ease all;
}

.text-group .bar:before {
  left: 50%;
}

.text-group .bar:after {
  right: 50%;
}

/* active state

.text-group input:focus ~ .bar:before,
.text-group input:focus ~ .bar:after {
  width: 50%;
}
*/

.form-control:focus {
  color: #495057;
  background-color: #fff;
  outline: 0;
  box-shadow: none;
  box-shadow: 0 0 0 0.08rem rgb(9, 98, 214);
}

/* HIGHLIGHTER ============================== */
.text-group .highlight {
  position: absolute;
  height: 60%;
  width: 100px;
  top: 25%;
  left: 0;
  pointer-events: none;
  opacity: 0.5;
}

/* active state */
.text-group input:focus ~ .text-group .highlight {
  -webkit-animation: inputHighlighter 0.3s ease;
  -moz-animation: inputHighlighter 0.3s ease;
  -o-animation: inputHighlighter 0.3s ease;
  -ms-animation: inputHighlighter 0.3s ease;
  animation: inputHighlighter 0.3s ease;
}

/* ボタン ============================== */
.signup_btn {
  display: inline-block;
  background-color: #1a73e8;
  color: #FFF;
  font-size: 1em;
  line-height: 2.5;
  text-decoration: none;
  letter-spacing: 0.05em;
  padding: 0.1em 2em;
  border-radius: 3px;
  cursor: pointer;
  border: none;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12), 0 3px 1px -2px rgba(0, 0, 0, 0.2);
  -moz-transition: .3s ease-out;
  -webkit-transition: .3s ease-out;
  -o-transition: .3s ease-out;
  -ms-transition: .3s ease-out;
  transition: .3s ease-out;
}

.signup_btn:hover {
  box-shadow: 0 8px 8px 0 rgba(0, 0, 0, 0.14), 0 3px 10px 0 rgba(0, 0, 0, 0.12), 0 6px 4px -3px rgba(0, 0, 0, 0.2);
}

.signup_btn i {
  padding-right: 8px;
}