* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Roboto', sans-serif;
}

body, html {
  height: 100%;
  width: 100%;
}

.container {
  display: flex;
  height: 100vh;
}

.left-panel {
  flex: 1;
  background: url('bg.png') no-repeat center center;
  background-size: cover;
}

.right-panel {
  flex: 1;
  background-color: #fff;
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.right-panel h2 {
  margin-bottom: 30px;
  font-size: 26px;
  text-align: left;
  border-bottom: 2px solid #eee;
  display: inline-block;
}

#loginForm {
  display: flex;
  flex-direction: column;
}

label {
  font-weight: bold;
  margin-bottom: 6px;
  margin-top: 20px;
}

.input-wrapper {
  display: flex;
  align-items: center;
  border: 1px solid #ccc;
  padding: 10px 12px;
  border-radius: 4px;
  background-color: #f8f8f8;
}

.input-wrapper .icon {
  margin-right: 8px;
}

input[type="text"],
input[type="password"] {
  border: none;
  outline: none;
  flex: 1;
  background-color: transparent;
  font-size: 14px;
}

.button-group {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
}

.reset-btn {
  background-color: #edf0f3;
  border: none;
  padding: 12px 24px;
  font-weight: bold;
  cursor: pointer;
}

.login-btn {
  background-color: #f9b200;
  border: none;
  color: white;
  padding: 12px 24px;
  font-weight: bold;
  cursor: pointer;
}

.password-wrapper {
  position: relative;
}

.input-wrapper .eye {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  color: #888;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.input-wrapper input[type="password"],
.input-wrapper input[type="text"] {
  border: none;
  outline: none;
  flex: 1;
  background-color: transparent;
  font-size: 14px;
  padding-right: 30px; /* space for the eye icon */
}

.input-wrapper .icon {
  margin-right: 8px;
}

