* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Open Sans", sans-serif;
}

.container {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  height: 100vh;
  background-image: url("../Images/login.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
}

.login-box {
  width: 380px;
  height: 400px;
  padding: 20px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  border: 2px solid white;
  backdrop-filter: blur(8px);
}

.login-box h2 {
  font-size: 2rem;
  font-weight: bolder;
}

.in1 {
  width: 340px;
  height: 50px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding-left: 10px;
  border-bottom: 1px solid black;
}

.in1 i {
  font-size: 1.4rem;
}

.in1 {
  width: 340px;
  height: 50px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding-left: 10px;
  border-bottom: 1px solid black;
}

.in1 i {
  font-size: 1.4rem;
}

.in1 input {
  font-size: 22px;
  margin-top: 12px;
  width: 300px;
  padding-left: 10px;
  padding-right: 10px;
  padding-top: 10px;
  padding-bottom: 9px;
  border-radius: 10px;
  margin-bottom: 10px;
  outline: none;
  border: none;
  background-color: transparent;
}

.in2 {
  width: 340px;
  height: 50px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding-left: 10px;
  border-bottom: 1px solid black;
}

.in2 i {
  font-size: 1.4rem;
}

.in2 input {
  margin-top: 12px;
  width: 300px;
  padding-left: 10px;
  padding-right: 10px;
  padding-top: 10px;
  padding-bottom: 9px;
  border-radius: 10px;
  margin-bottom: 10px;
  outline: none;
  border: none;
  font-size: 22px;
  background-color: transparent;
}

.login-box button {
  width: 340px;
  height: 50px;
  border-radius: 10px;
  border: none;
  font-size: 1.6rem;
}

.login-box button:hover {
  cursor: pointer;
  background-color: #ffa632;
  color: white;
}

.check {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 340px;
}

.forget {
  color: blue;
}

.forget:hover {
  cursor: pointer;
}

.login-box b {
  color: blue;
}

.login-box b:hover {
  cursor: pointer;
}