.login-container {
  max-width: 420px;
  margin: 9% auto;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05), 0 4px 20px rgba(0, 0, 0, 0.08),
    0 8px 30px rgba(0, 0, 0, 0.1);
  background-color: white;
}

.login-logo {
  display: block;
  margin: 0 auto 0.5rem auto;
  max-width: 180px;
}

.welcome-text {
  text-align: center;
  color: #808080;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  color: #5e5e5e;
}

.form-input {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  display: flex;
  justify-content: space-between;
}

.password-input-container {
  position: relative;
}

.password-toggle {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  color: #aaa;
}

.remember-me {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
  color: #5e5e5e;
}

.remember-me input {
  margin-right: 0.5rem;
  width: 16px;
  height: 16px;
}

.login-button {
  width: 100%;
  padding: 0.75rem;
  background-color: #5e5e5e;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  text-transform: uppercase;
}

.login-button:hover {
  background-color: #3aa77c;
}

.forgot-password {
  text-align: right;
  font-size: 0.8rem;
  color: #5e5e5e;
  text-decoration: none;
  margin-left: auto;
}
