@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:wght@400;700&display=swap');

body {
  margin: 0;
  font-family: 'Noto Sans', sans-serif;
}

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

.main-login {
  width: 100vw;
  height: 140vh;
  /* background: #8A2525; */
  background: rgb(84, 50, 208);
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 100px;
  padding-bottom: 50px;
}

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

.left-login>h1 {
  color: white;
  font-size: 2.5vw;
}

.left-login-image {
  width: 35vw;
}

.right-login {
  width: 60vw;
  height: 0vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.card-login {
  width: 70%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 30px 35px;
  border-radius: 20px;
  box-shadow: 0px 10px 50px #000000a4;
  background-color: white;
}

.card-login>h1 {
  /* color: #8A2525; */
  color: rgb(84, 50, 208);
  font-weight: 800;
  margin: 0;
}

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

.icon {
  position: absolute;
  top: calc(55%);
  left: 84.9%;
}

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

.textfield>label {
  color: black;
  margin-bottom: 10px;
  font-weight: bold;
}

.textfield>input::placeholder {
  color: #000000;
}

.btn-login {
  width: 100%;
  padding: 16px 0;
  margin: 25px;
  border: none;
  border-radius: 8px;
  outline: none;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 3px;
  color: white;
  background: rgb(84, 50, 208);
  cursor: pointer;
  box-shadow: 0px 10px 40px -12px #00ff8052;
}

.btn-login:hover {
  background: rgba(111, 50, 208, 0.9);
}

#google-login {
  width: 100%;
  padding: 16px 0;
  margin: 25px;
  border: none;
  border-radius: 8px;
  outline: none;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 3px;
  color: white;
  background: rgb(84, 50, 208);
  cursor: pointer;
  box-shadow: 0px 10px 40px -12px #00ff8052;
}

#google-login:hover {
  background: rgba(111, 50, 208, 0.9);
}

.close-btn {
  background-color: transparent;
  border: none;
  font-size: 36px;
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
  color: white;
}




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

@media only screen and (max-width: 600px) {
  .main-login {
    flex-direction: column;
  }

  .left-login>h1 {
    display: none;
  }

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

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

  .left-login-image {
    width: 40vh;
  }

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