body {
  background-color: #f6f7fc;
  font-family: system-ui, sans-serif;
  margin: 0;
  padding: 0;
}

.login-page {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: calc(100vh);
  background: #f5f6fc;
}

.login-container {
  background-color: white;
  padding: 40px 30px;
  border-radius: 12px;
  box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.05);
  max-width: 400px;
  width: 100%;
  text-align: center;
}

.form-logo {
  margin-bottom: 15px;
}

.form-title {
  font-size: 20px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 5px;
}

.form-subtitle {
  font-size: 14px;
  color: #888;
  margin-bottom: 25px;
}

.input-wrapper {
  position: relative;
  margin-bottom: 20px;
}

.input-wrapper input {
  width: 100%;
  padding: 12px 40px 12px 40px;
  border: 1px solid #eee;
  border-radius: 8px;
  background: #f5f6fc;
  font-size: 14px;
  color: #333;
}

.input-icon {
  position: absolute;
  top: 50%;
  left: 12px;
  transform: translateY(-50%);
  color: #bbb;
}

.btn-login {
  background-color: #fcb900;
  color: white;
  border: none;
  padding: 12px;
  width: 100%;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  margin-top: 10px;
}

.btn-login:hover {
  background-color: #e0a800;
}

.form-options {
  text-align: right;
  margin-bottom: 15px;
}

.forgot-link {
  font-size: 13px;
  color: #ff9e00;
  text-decoration: none;
}

.forgot-link:hover {
  text-decoration: underline;
}

.register-text {
  font-size: 13px;
  margin-top: 20px;
  color: #555;
}

.register-text a {
  color: #ff9e00;
  text-decoration: none;
}

.register-text a:hover {
  text-decoration: underline;
}

.toggle-password {
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  cursor: pointer;
  color: #bbb;
  font-size: 16px;
}

.input-wrapper input:focus {
  border: solid 1px #aaa;
  outline: none;
}