@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Kanit:wght@200;400;600&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Righteous&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Sarala:wght@400;700&family=Space+Grotesk:wght@300..700&display=swap");

body {
  margin: 0;
  font-family: "Inter", sans-serif;
}

body * {
  box-sizing: border-box;
}

.main-loguin {
  width: 100vw;
  height: 100vh;
  background: #fbfbfb;
  display: flex;
  justify-content: center;
  align-items: center;
}

.left-loguin {
  width: 50vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.left-loguin > h1 {
  color: #1e1a1d;
  font-size: 3vw;
}

.left-loguin-img {
  width: 35vw;
}

.right-loguin {
  width: 50vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.card-loguin {
  width: 60%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 30px 35px;
  background: #f0f0f0;
  border-radius: 20px;
  box-shadow: 0px 10px 40px #35bfff8c;
}

.card-loguin > h1 {
  color: #1e1a1d;
  font-weight: 800;
  margin: 0;
}

.textfield {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  margin: 10px 0px;
}

.textfield > input {
  width: 100%;
  border: none;
  border-radius: 10px;
  padding: 15px;
  background: #fbfbfb;
  color: #161616;
  font-size: 12pt;
  box-shadow: 0px 10px 40px #00000056;
  outline: none;
  box-sizing: border-box;
}

.textfield > label {
  color: #272727;
  margin-bottom: 10px;
}
.textfield > input::placeholder {
  color: #c7c7c7;
}

.btn-loguin {
  width: 50%;
  padding: 16px 0px;
  margin: 25px;
  border: none;
  border-radius: 8px;
  outline: none;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 3px;
  color: #ffffff;
  background: #252525;
  cursor: pointer;
  box-shadow: 0px 10px 40px -12px #1f80ff;
}

@media only screen and (max-width: 950px) {
  .card-loguin {
    width: 85%;
  }
}

@media only screen and (max-width: 600px) {
  .main-loguin {
    flex-direction: column;
  }
  .left-loguin > h1 {
    display: none;
  }

  .left-loguin {
    width: 100%;
    height: auto;
  }

  .right-loguin {
    width: 100%;
    height: auto;
  }

  .left-loguin-img {
    width: 50vw;
  }

  .card-loguin {
    width: 90%;
  }
}
