@import url('https://fonts.googleapis.com/css2?family=Kanit&display=swap');

* {
  margin: 0;
  padding: 0;
  font-family: 'Kanit', sans-serif;
  box-sizing: border-box;
}

body {
  height: 100vh;
  width: 100vw;
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: linear-gradient(130deg, #34495e, #2c3e50);
}

.logo-center {
  display: flex;
  justify-content: center;
}

.logo {
  width: 150px;
  height: 100px;
}


.container {
  height: 70vh;
  width: 35vw;
  background-color: white;
  border-radius: 3px;
  padding: 10px;
  display: block;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
}

.container>form>div {
  margin-bottom: 10px;
}

.sub-container-center {
  margin: 10px 50px 10px 50px;
}

.sub-container-center>div {
  margin-top: 15px;
  margin-bottom: 10px;
}

.input-sub-container {
  border-style: hidden hidden solid hidden;
  border-bottom: 1px solid;
  width: 100%;
  border-color: rgb(184, 182, 182);
  outline: none;
}


.btn-login {
  width: 100%;
  height: 40px;
  background-color: #34495e;
  color: white;
  border-radius: 3px;
  border-style: hidden;
}

.sub-container-footer {
  margin: 30px 50px 30px 50px;
}

.text-container {
  display: flex;
  justify-content: center;
}

.alertText {
  color: red;
  font-size: 12px;
}

.wrapper-mobile{
  display: none;
}

/* mobile */
@media only screen and (max-width: 440px) {

  body {
    all:unset;
  }

  .container {
    display: none;
   }

  .wrapper-mobile{
    width: 100vw;
    height: 100vh;
    display: block;
    background-color: black;
  }

  .logo{
    width: 100%;
    height: 35%;
    object-fit: cover;
  }

  .line{
    width: 100%;
    height: 52px;

    display: flex;
    flex-direction: column;
    row-gap: 8px;
  }

  .form{
    height: 65%;
    padding: 30px;
    box-sizing: border-box;
    color: white;
    background-color: black;

    display: flex;
    flex-direction: column;
    row-gap: 19px;
  }
  
  .text-title-input{
    font-size: 10px;
    font-weight: bold;
  }

  .input-mobile{
    width: 100%;
    height: 32px;
    border-radius: 5px;
    padding-left: 10px;
    border: 1px #AEAEAE solid;
    color: white;
    background-color: black;
  }

  input:active {
    background-color: black;
  }

  .btn-login {
    height: 32px;
    background-color: #3498DB;
  }

  hr{
    height: 1px;
    background-color: #F8F8F8;
    border: none;
  }

  .text-powerbuy{
    text-align: center;
  }


}