.login-form-input {
  width: 100%;
  padding: 12px;
  background-color: #333;
  border: 1px solid #444;
  border-radius: 8px;
  color: #fff;
  font-size: 14px;
  margin-bottom: 16px;
  box-sizing: border-box;
}

.login-form-input:disabled {
  background-color: #444;
  cursor: not-allowed;
}

.login-button {
  width: 100%;
  padding: 14px;
  background-color: #9333ea;
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  margin-top: 16px;
  box-sizing: border-box;
}

.login-button:disabled {
  background-color: #d4c4e3;
  cursor: not-allowed;
}

.login-label-style {
  display: block;
  margin-bottom: 8px;
  color: #ccc;
  font-size: 14px;
  box-sizing: border-box;
}

.login-domain-container {
  position: relative;
}

.checkbox-container-style {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  font-size: 14px;
  color: '#ccc';
  box-sizing: border-box;
}

.error-style {
  background-color: rgba(220, 38, 38, 0.1);
  color: var(--color-error);
  padding: 12px;
  border-radius: 8px;
  margin-bottom: 16px;
  font-size: 14px;
  box-sizing: border-box;
}

.status-icon-style {
  position: absolute;
  right: 10px;
  top: 35px;
  display: flex;
  align-items: center;
  width: 20px;
  height: 20px;
}

.password-container {
  position: relative;
}

.show-password-button {
  position: absolute;
  right: 12px;
  top: 30px;
  background: none;
  border: none;
  color: #ccc;
  cursor: pointer;
}
