* {
  box-sizing: border-box;
}

body,
html {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  width: 100vw;
  height: 100vh;
  margin: 0;
  padding: 0;
  background-color: #e7e7ee;
  font-size: 14px;
  color: #16161a;
  font-family: "Roboto", sans-serif;
}

.ping-container {
  display: flex;
  flex-direction: column;
  flex: 1;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.ping-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 24px;
  gap: 8px;
}

.login-box,
.new-user-box {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 32px;
  border-radius: 4px;
  background-color: white;
  box-shadow: 0 0 4px 0 #00000029;
  width: 512px;
  max-width: 100%;
}

.new-user-box {
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 4px;
  height: 56px;
  padding: 0 16px;
  font-size: 14px;
  font-weight: 700;
  color: #16161a;
}

.nav-link {
  font-weight: 500;
  color: #0076d4;
  cursor: pointer;
}

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

.ping-credits {
  width: 100%;
  height: 16px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url("../images/powered-by-ping-identity.svg");
}

.title {
  margin-top: 24px;
  font-size: 24px;
  font-weight: 500;
}

.ping-input-label {
  font-weight: 500;
}

.ping-buttons .ping-button {
  height: 32px;
  padding: 0 16px;
  display: flex;
  align-items: center;
  background-color: #0a8cfa;
  color: white;
  width: fit-content;
  border-radius: 4px;
  cursor: pointer;
}

.ping-buttons .ping-button:hover {
  background-color: #0059a2;
}

input[type="text"] {
  height: 32px;
  padding: 0 8px;
  border: 1px solid #afafb6;
  border-radius: 4px;
  font-size: 14px;
  width: 100%;
}

input[type="text"]:focus {
  outline: none;
  box-shadow: 0 0 0 2px #e7f1ff;
}

input[type="text"]:invalid {
  border-color: red;
}

form {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ping-input-container {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.tooltip-text {
  color: red;
  display: none;
  gap: 4px;
}

.tooltip-text .icon {
  font-weight: 700;
}

.tooltip-text.show {
  display: flex;
}

.ping-buttons {
  margin-top: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 0;
  padding: 0;
}

li.identifier-first__account-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 12px;
  height: 56px;
  border-radius: 4px;
  cursor: pointer;
  background-color: #f6f6fa;
}

li.identifier-first__account-item:hover {
  background: #e7f1ff;
}

.identifier-first__remove-account {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  font-size: 24px;
  line-height: 24px;
  margin-left: auto;
  border-radius: 2px;
  cursor: pointer;
}

.identifier-first__remove-account:hover:before {
  color: #d70000;
}

.identifier-first__remove-account:before {
  color: #afafb6;
  font-family: "iconfont";
  content: '⨉';
}

.identifier-first__account-item.identifier-first__add-account {
  background-color: transparent;
  padding: 0px;
  height: fit-content;
}

.identifier-first__account-item.identifier-first__add-account:hover {
  background-color: transparent;
}
