@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+Thai:wght@400;700&display=swap');
body{
  font-family: 'Noto Sans Thai', sans-serif;
  margin: 0 auto;
  overflow-x: hidden;
  width: 100%;
}

.container{
  background-color: rgb(248, 248, 248);
  height: 100vh;
}

.appbar{
  display: flex;
  justify-content: center;
  align-items: center;
  height: 80px;
  background: rgb(0, 88, 171);
}

h1{
  color: white;
}

h2,h4{
  text-align: center;
}

.login{
  display: flex;
  justify-content: center;
  align-items: center;
  height: 90%;
}

.login-form{
  width: 400px;
  background-color: white;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  border-radius: 10px;
}

.box{
  display: flex;
  justify-content: center;
  align-items: center;
}

form{
  width: 250px;
  display: grid;
  column-gap: 1rem;
  margin-top: 2rem;
  margin-bottom: 2rem;
  margin-left: auto;
  margin-right: auto;
}

input[type=text],input[type=password] {
  min-width: 250px;
  height: 40px;
  padding: 12px 20px;
  margin: 2px 0 1rem 0;
  box-sizing: border-box;
  font-family: 'Noto Sans Thai', sans-serif;
  font-size: 18px;
}

.line{
  width: 100%;
  border: 2px solid rgb(0, 88, 171);
}

.register-box{
  width: 250px;
  display: grid;
  column-gap: 1rem;
  margin-top: 2rem;
  margin-bottom: 2rem;
  margin-left: auto;
  margin-right: auto;
}

a{
  width: 100%;
}

button{
  font-family: 'Noto Sans Thai', sans-serif;
  height: 40px;
  font-size: 16px;
  margin-bottom: 1rem;
  width: 250px;
}


@media screen and (max-width: 420px) {
  .login-form{
    align-items: flex-start;
    width: 100vw;
    height: 100%;
    margin: 0;
  }
  form{
    padding-top: 3rem;
  }
}