
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+Thai:wght@400;700&family=Sarabun:ital,wght@0,100;0,400;0,600;0,700;1,800&display=swap');
:root{
    --default-bg-color: #FFFFFF;
    --default-color: #009a92;
    --default-color2: #009a92;
}

@font-face {
  font-family: 'prompt';
  src: local('Prompt'), url('/static/webfonts/Prompt/Prompt-Light.ttf') format("truetype");
}

html, body{ 
  font-family: "Prompt", sans-serif;
  font-size: 16px;
  width: 100%;
  height: 100%;
  margin:0; 
  padding: 0;
}
.logo{
  width: fit-content;
  block-size: fit-content;
  padding: 5px 15px; 
  color: white;
  background: #009a92;
  border-radius: 25px;
}

.g-recaptcha{
  transform: scale(0.99); 
  -webkit-transform: scale(0.99); 
}

.g-recaptcha div {
  margin: 0 auto;
}

@media only screen and (max-width: 380px) {
  .g-recaptcha{
    transform: scale(0.77); 
    -webkit-transform: scale(0.77); 
  }
}


body{
  background: var(--default-bg-color);
  overflow: hidden;
  text-align: center;
}
::selection{
  background: rgba(26,188,156,0.3);
}

.login-title{
    width: 800px;
    margin-left: auto;
    line-height: 50px;
    font-size: 2rem;
    font-weight: bold;
    margin-top: 50px;
    display: inline-block;
    padding: 10px 20px;
    margin-right: auto;
    color: lightgray;
    border: 1px solid lightgray;
}

.wrapper{
  width: 90%;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
  background: #fff;
  border-radius: 5px;
  box-shadow: 0px 4px 10px 1px rgba(0,0,0,0.1);
}

.wrapper form{
  padding: 25px 20px 25px 25px; /* top  right bottom left */
  
}
.wrapper form .row{
  height: 45px;
  margin-bottom: 15px;
  position: relative;
}

.wrapper form .row input{
  height: 100%;
  width: 100%;
  outline: none;
  padding-left: 60px;
  border-radius: 5px;
  border: 1px solid lightgrey;
  font-size: 16px;
  transition: all 0.3s ease;
}

form .row input:focus{
  border-color: #16a085;
  box-shadow: inset 0px 0px 2px 2px rgba(26,188,156,0.25);
}
form .row input::placeholder{
  color: #999;
}
.wrapper form .row i{
  position: absolute;
  width: 47px;
  height: 100%;
  color: #fff;
  font-size: 18px;
  background: var(--default-color2);
  /* border: 1px solid #16a085; */
  border-radius: 5px 0 0 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wrapper form .pass{
  margin: -8px 0 20px 0;
}
.wrapper form .pass a{
  /* color: #16a085; */
  color: var(--default-color2);
  font-size: 17px;
  text-decoration: none;
}
.wrapper form .pass a:hover{
  text-decoration: underline;
}
.wrapper form .button input{
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  padding-left: 0px;
  background: var(--default-color2);
  /* border: 1px solid #16a085; */
  cursor: pointer;
}
form .button input:hover{
  background: #12876f;
}
