@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap");

body {
  font-family: "Inter", sans-serif;
  margin: 20px;
  padding: 20px;
  background-color: #f4f4f4;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url("../assets/bg_login.png");
}

.container {
  display: flex;
  height: 100vh;
  width: full;
  align-items: center;
  /* 50% 0 no-repeat fixed; */
}

.login-form {
  box-shadow: 20px #fff;

  flex-direction: column;
  padding: 0 20px;
  width: 30%;
  margin: auto;
  height: 60%;
  gap: 15px;
  border-radius: 5px;
  background-color: #fff;
  border: none;
}

.submit-button {
  background-color: rgb(67, 56, 202);
  color: #fff;
  margin-top: 20px;
  width: 100%;
  padding: 12px 20px;
  border: none;
  border-radius: 7px;
  cursor: pointer;
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  /* margin: 5%; */
}

/* .submit-button:hover {
        background-color: #0056b3;
    } */

.header {
  text-align: center;
  font-weight: 700;
  color: rgb(0, 0, 0);
  font-size: 24px;
  line-height: 32px;
}

.checkbox {
  display: flex;
  flex-direction: row;
  gap: 2px;
  color: rgb(55, 65, 81);
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}

input:not([type="checkbox"]),
select {
  width: 100%;
  padding: 10px;
  margin-bottom: 16px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  color: rgb(55, 65, 81);
}
.forgot-password {
  color: rgb(99, 102, 241);
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
}
