/* style_login.css */

@import url('https://fonts.googleapis.com/css2?family=Comfortaa:wght@300&family=Kiwi+Maru:wght@300&display=swap');

* {
    font-family: 'Comfortaa', cursive;
}

body {
    height: 100vh;
    background-position: center;
    display: flex;
    justify-content: center;
    /* margin-top: 130px; */
    color: #005500;
    background-image: url("../image/binary.jpg");
    width: 50%;
    background-size: cover;
    background-repeat: no-repeat;
}

.img {
    left: 100px;

}

.container {
    text-align: center;
    /* margin: 0 auto; */
    width: 400px;
    margin-top: 40px;
}

.container .error p {
    /* position: fixed; */
    text-align: center;
}


/* 画像点滅 */
@keyframes blinking {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
.blink {
	animation: blinking 1s ease-in-out infinite alternate;
}

h1 {
    font-size: 45px;
    letter-spacing: 0.08em;
}

label {
    font-size: 20px;
}

input[type="text"],
input[type="password"] {
    width: 50%;
    padding: 10px;
    margin: 5px 0;
    border: none;
    box-shadow: 0 2px 4px #4b4b4b;
}

input[type="submit"] {
    margin: 15px;
    padding: 10px 20px;
    font-size: 18px;
    box-shadow: 0 2px 4px #4b4b4b;
    background: #09200c;
    color: #d1f2db;
    /* animation: fuwafuwa 2s infinite; */
}

input[type="submit"]:hover {
    transform: rotate(10deg);
}

footer {
  margin-top: auto;
  color: #F0F0F0;
  background-color: #FFFFFF;
  justify-content: left;
  text-align: center;
  /*position: absolute;*/
  /*←絶対位置*/
  bottom: 0;
  /*下に固定*/
  width: 100%;
  /* スティッキーフッターとして設定 */
  flex-shrink: 0;
  /* フッターが内容によって縮まないようにする */
  height: 7vh;
}

#balloon-image {
    position: absolute;
    width: 60px;
    /* 画像の幅 */
    height: 60px;
    /* 画像の高さ */
}

@media screen and (max-width: 768px){ 
    body {
        width: 100%;
        height: 100vh;
        background-position: center;
    }
  }

/* link */
a:link{color:#3366CC; text-decoration:none;}
a:visited{color:#663399; text-decoration:none;}
/* a:hover {text-decoration:solid underline red 2px;} */
a:hover{color:orange; text-decoration:none;}

a.noticelink:link{color:red; text-decoration:none;}
a.noticelink:visited{color:red; text-decoration:none;}
/* a:hover {text-decoration:solid underline red 2px;} */
a.noticelink:hover{color:orange; text-decoration:none;}
