@charset "UTF-8";

/* Simple Reset */
* { margin: 0; padding: 0; box-sizing: border-box; }

/* body */
body {
  /* mind 20210201 Start */
    /* background: #e9e9e9; �C���O */
    background : #fff;
    background-image: url("../images/background.png"); /* �ǉ� �w�i�摜�w�� */
    background-size:  cover; /* �ǉ� */
  /* mind 20210201 End */
  /*font: 400 90.5%/1.5em 'Open Sans', sans-serif;*/
}
/* Form Layout */
.form-wrapper {
  /* mind 20210201 Start */
    /*background: #fafafa; �C���O */
    background: #ffffff; /* �C���� �w�i�F���F */
    box-shadow: 2px 2px 4px;  /* �ǉ� �e */
  /* mind 20210201 End */
  margin: 2em auto;
  padding: 0 1em;
  max-width: 370px;
 /* mind 20210201 Start �ǉ� */
  max-height: 490px;
/* mind 20210201 End */

}
h1 {
  text-align: center;
  padding: 1em 0;
}
/* mind 20210201 Start �����𑾎�*/
h3 {
  font-weight: bold;
}
/* mind 20210201 End */
form {
  /* padding: 0 1.2em; */
  padding:  3.2em;
}
.form-item {
  margin-bottom: 0.75em;
  width: 100%;
}
.form-item input {
  /* mind 20210201 Start */
      /* background: #fafafa; �C���O */
      background: #ffffff; /* �C���� */
  /* mind 20210201 End */
  border: 1px solid #305496;
  color: #666;
  font-family: 'Open Sans', sans-serif;
  font-size: 1.2em;
  height: 40px;
  transition: border-color 0.3s;
  width: 100%;
}
.form-item input:focus {
  border-bottom: 2px solid #c0c0c0;
  outline: none;
}
.button-panel {
  margin: 1em 0 0;
  width: 100%;
}
.button-panel .button {
  background: #03B7D2;
  color: #fff;
  cursor: pointer;
  /*height: 50px;*/
  font-family: 'Open Sans', sans-serif;
  font-size: 1.2em;
  letter-spacing: 0.05em;
  text-align: center;
  text-transform: uppercase;
  transition: background 0.3s ease-in-out;
  width: 100%;
}
.button:hover {
  background: #80CFEF;
}

.form-footer {
  font-size: 1em;
  padding: 2em 0;
  text-align: center;
}

.form-footer a {
  color: #8c8c8c;
  text-decoration: none;
  transition: border-color 0.3s;
}

.form-footer a:hover {
  border-bottom: 1px dotted #8c8c8c;
}

/* mind 20210201 Start */
.button{
  margin: 0 !important;
}
/* mind 20210201 End */