html,body{
    width: 100%;
    height: 100%;
    overflow:hidden;
    display: flex;
    align-items: flex-start; /* 수직 정렬 */
    flex-direction: row; /* default: row */
    justify-content: start; /* flex direction에 대해서 정렬방식 선택 */
   
}

.Login_div{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 450px;
  height: 100%;
  padding: 50px;
  padding-bottom: 200px;
  text-align: center;
  background-color: #00000089;
  color: white;
}
.textInput{
  padding: 15px;
  width: 100%;
}
.moveButton{
    padding: 100px 100px;
    border: 1px solid gray;
    color: white;
    font-family: fantasy;
    display: inline-block;
    font-size: 50px;
    transition: 0.6s;
    text-decoration: none;
}

.moveButton:hover{
    background-color: green;
}
.blueButton{
    background-color: #12c4ff;
}
.greenButton{
    background-color :palegreen;
}
#buttonDiv{
    animation-duration: 1s;
    animation-name : slidein;
}

.buttons{
  position: relative;
  right: 15px;
  top: 10px;
  margin: 11px;
  font-size: 13px;
  cursor: pointer;
}
.buttons .underPositonButton:hover{
  color: #ff7675;
  text-decoration: underline;
}

#loginButton{
  background-color: #546de5;
  border: none;
  border-radius: 30px;
  margin-top: 20px;
  color: white;
  width: 350px;
  height: 60px;

}

#background{
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -1;
}

@keyframes slidein {
  from {
    margin-top: 100%;
    width: 100%
  }

  to {
    margin-top: 0%;
    width: 100%;
  }
}
/* 어그로체 */
@font-face {
  font-family: 'SBAggroB';
  src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2108@1.1/SBAggroB.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}
