/* Login Styles */

.login-container {
  display: flex;
  height: 100vh;
  padding: 20px;
  width: 100%;
}

.form-container {
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.login-box {
  width: 50%;
}

.login-form-group {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-radius: 8px;
  padding: 12px;
  background-color: #f5f5f5;
}

.login-form-group label {
  margin-left: 13px;
}

.login-form-group input {
  /* background-color: #f5f5f5; */
  border: none;
}

.login-form-group i {
  position: absolute;
  right: 16px;
  top: 70%;
  transform: translateY(-50%);
  cursor: pointer;
  font-size: 18px;
  color: #777;
}

.login-button {
  background-color: #007272;
  width: 100%;
  padding: 12px 16px;
  border-radius: 6px;
  color: white;
  border: none;
}

.img-container {
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.login-img {
  height: 90vh;
}
