body {
  font-family: "Hiragino Sans", "Noto Sans JP", sans-serif;
  margin: 0;
  padding: 20px;
  color: #333;
  height: 100vh; /* 画面の高さを基準に */
  margin: 0;
  background: linear-gradient(to top, rgb(219, 243, 251) 20%, white 33%);

}



/* 西高のロゴ */
.logo {
  position: absolute;
  top: 0.5%;   
  left: 1%; 
  width: 50px;
}

.logo:hover {
  opacity: 0.7;   /* 半透明にする */
  cursor: pointer; /* マウスカーソルを「リンクっぽい手の形」に */
}




/* 愛知県立西尾高等学校 */
#title-of-login {
  text-align: center;
  font-family: sans-serif; 
  color:black;   
  font-size: 300%;
  margin-top: 0%;
  
  }
@media screen and (max-width:768px){
  #title-of-login{
    font-size: 150%;
    margin-top: 0.5%;

  }
}
@media screen and (max-width:640px){
  #title-of-login{
    font-size: 120%;
    margin-top: 1%;
  }
  
}





/* ログインの文字 */
#text-login {
  margin-top: 5%;
  margin-left: 30vw;
}
@media screen and (max-width:768px){
  #text-login{
    margin-top: 20%;
    margin-left: auto;
  }
}



/* ログインボタン */
#loginBtn {
  width: 100%;
  padding: 8px;
  background: #137ec6;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 15px;
  cursor: pointer;
  margin-top: 15px;
}

#loginBtn:hover {
  background: #062c46;
}




input, select {
  width: 100%;
  padding: 10px;
  margin-top: 6px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
}
/* ゲストモードボタンのボックス */
#guestBtn-box {
  margin-top: 0px;
  text-align: center;
}

/* ゲストモードボタン */
#guestBtn {
  width: 100%;
  padding: 7px;
  background: #e0e0e0;   /* グレー系でログインボタンと差別化 */
  color: #333;
  border: 1px solid #aaa;
  border-radius: 6px;
  font-size: 15px;
  cursor: pointer;
  margin-top: 5px;
  transition: background 0.3s ease, border-color 0.3s ease;
}

#guestBtn:hover {
  background: #cfcfcf;
  border-color: #585858;
}


/* 作成：西尾高校生徒会執行部 */
#maker-name{
  position: absolute;
  color: rgb(6, 6, 6);
  bottom: 20px;
  
}
@media screen and (max-width:768px){
  #maker-name{
    top: 90%;

  }
}

@media screen and (max-width:320px){
  #maker-name{
    display: none;
  }
  
}

#errorMsg{
  color: red
}


