@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400&display=swap');
*{
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Roboto', sans-serif;
}

body{
  width: 100vw;
  height: 100%;
}
.relative
{
  position: relative;
  /* width: fit-content; */
}
.bg_blue
{
  width: 100vw;
  height: 100vh;
  /* background-image: url("../assets/bnr_img006-1.svg");*/
  background-image: url("../assets/bnr_img.jpg");
  background-size: cover;
  background-repeat: no-repeat;
}
.copyRight
{
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 12px;
  color: #FFFFFF;
}
.backdrop
{
  width: 100vw;
  height: 100vh;
  /* background-color: rgba(4, 128, 249, 0.35);   */
  background-color: rgba(0, 60, 120, 0.35);
}
form
{
  background-color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  border-radius: 8px;
  min-width: 408px;
}
.register_form
{
  min-width: 514px;
}
.logo
{
  display: block;
  margin: 0 auto; 
  margin-top: 43px;
  margin-bottom: 50px;
  width: 141px;
}
.margin-bt31
{
  margin-bottom: 31px;
}
.formInput
{
  display: block;
  font-size: 17px;
  padding: 18px 28px;
  width: 76.712%;
  min-width: 336px;
  border-radius: 5px;
  border: solid 1px #B7B7B7;
  margin: 0 auto;
}
.bi
{
  position: absolute;
  top: 50%;
  right: 60px;
  transform: translateY(-50%);
  font-size: 21px;
}

/* djangoのtemplateタグだとなぜか一つずれる */
.formInput:nth-of-type(2), div.relative .formInput{
  margin-bottom: 42px;
}
.formInput:nth-of-type(3){
  margin-bottom: 30px;
}
/* 登録フォームのみmarginが異なる */
.register_form .formInput, .register_form div.relative .formInput{
  margin-bottom: 23px;
}
.formBtn
{
  display: block;
  font-size: 17px;
  padding: 18px 28px;
  width: 76.712%;
  min-width: 336px;
  border-radius: 43px;
  background-color: #047FF7;
  color: #fff;
  margin: 0 auto 30px auto;
}
/* 追加分 */
a.formBtn
{
  text-decoration: none;
  text-align: center;
  cursor: pointer;
}
.otherOption
{
  display: block;
  margin: 0 auto 30px auto;
  color: #1A40BF;
}
/* 追加 */
a.otherOption
{
  font-size: 14px;
  text-align: center;
  cursor: pointer;
  text-decoration: none;
}
.confirmeTitle
{
  font-size: 29px;
  color: #0480F9;
  margin-top: 52px;
  text-align: center;
}
.color_blue{
  text-align: center;
  color: #0480F9;
  font-size: 12px;
  font-weight: bold;
}

/* 追加分 */
.address_note
{
  width: 76.712%;
  min-width: 336px;
  font-size: 12px;
  margin: -15px auto 11px;
  color: rgb(99, 99, 99);
  font-weight: 300;
  transform: translateX(10px);
}
.error_message
{
  width: 76.712%;
  /* min-width: 336px; */
  max-width: 336px;
  margin: 0 auto 10px;
  color: #ff3400;
}
