.login-container {
  margin: 0 auto;
  padding: 0;
  height: 100vh;
}

.login-content {
  height: 100%;
}

.panel {
  position: relative;
  margin: 0;
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 4px 4px 4px rgba(72, 72, 72, 0.12);
  padding: 0 60px 30px 60px;
  width: 320px;
  display: flex;
  flex-direction: column;
  grid-gap: 6px;
}

#panel-loader {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2001;
  background-color: rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  justify-content: center;
  align-items: center;
  display: none;
}

.panel .logo {
  height: 170px;
  width: auto;
}

h1,
h3 {
  font-size: 24px;
  color: #212121;
  font-weight: 500;
  margin: 0;
}

a {
  color: #108060;
  text-decoration: none;
  font-weight: 400;
}

p {
  margin-top: 0;
  margin-bottom: 20px;
  line-height: 140%;
}

a:hover {
  text-decoration: underline;
}

.error.pageLevel {
  color: #ed1c24;
  margin-top: 8px;
  font-size: 14px;
}

.error.itemLevel {
  font-size: 12px;
  margin-bottom: 4px;
}

.buttons {
  /*margin: 50px 0 0 0;*/
  display: flex;
  width: 100%;
  justify-content: center;
  grid-gap: 16px;
  /* TODO: verify direction after deploy */
  flex-direction: row-reverse;
}

.buttons button {
  background-color: #108060;
  color: #ffffff;
  height: 38px;
  padding: 8px 24px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.03em;
  white-space: nowrap;
  margin-top: 50px;
}

.buttons button:hover {
  background: #108060;
}

.buttons button:active {
  background: #005336;
}

.buttons button#cancel,
.buttons button.sendNewCode {
  background-color: #fff;
  color: #108060;
  border: 1px solid #108060;
}

.buttons button#cancel:hover,
.buttons button.sendNewCode:hover {
  border: 1px solid #005336;
}

.heading,
.intro {
  text-align: center;
}

ul {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.helpLink {
  display: none;
}

label {
  font-size: 14px;
  font-weight: 700;
  line-height: 19.6px;
  display: inline-block;
  margin: 20px 0 8px 0;
}

.body-small-bold {
  font-size: 14px;
  font-weight: 700;
  line-height: 19.6px;
  display: inline-block;
  margin: 20px 0 8px 0;
}

input {
  border-radius: 5px;
  width: 294px;
  height: 20px;
  font-weight: 400;
  font-size: 14px;
  line-height: 19px;
  border: 1px solid #dadada;
  padding: 9px 12px;
}

select {
  width: 100%;
  border: 1px solid #dadada;
  padding: 9px 12px;
  border-radius: 5px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: transparent;
  background-image: url("data:image/svg+xml;utf8,<svg fill='black' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
  background-repeat: no-repeat;
  background-position-x: 98%;
  background-position-y: 5px;
}

select:focus-visible {
  background: #effbf7;
  outline-color: #108060;
  background-image: url("data:image/svg+xml;utf8,<svg fill='black' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
  background-repeat: no-repeat;
  background-position-x: 98%;
  background-position-y: 5px;
}

input[type='password'] {
  width: 266px;
  padding: 9px 40px 9px 12px;
}

.attrEntry {
  position: relative;
}

.toggle-password-button {
  background-color: transparent;
  border: none;
  padding: 0;
  position: absolute;
  right: 15px;
  cursor: pointer;
  border-radius: 8px;
}

.toggle-password-button:hover {
  box-shadow: 0 0 10px 2px rgba(0, 0, 0, 0.05);
}

.toggle-password-button-content {
  width: 24px;
  height: 24px;
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath opacity='0.3' d='M3 12C3 12 5.45455 6 12 6C16.9091 6 21 12 21 12C21 12 16.9091 18 12 18C5.45455 18 3 12 3 12Z' fill='%23212121'/%3E%3Cpath opacity='0.3' fill-rule='evenodd' clip-rule='evenodd' d='M12 15C10.3431 15 9 13.6569 9 12C9 10.3431 10.3431 9 12 9C13.6569 9 15 10.3431 15 12C15 13.6569 13.6569 15 12 15Z' fill='%23212121'/%3E%3C/svg%3E%0A");
}

input:focus-visible {
  background: #effbf7;
  outline-color: #108060;
}

.panel-mask {
  display: none !important;
}

.error {
  color: #ed1c24;
  text-align: center;
}

#attributeList {
  text-align: left;
}

#attributeList > ul {
  margin-top: 0;
}

#unified-header {
  margin: 0;
  color: #212121;
  line-height: 140%;
}

#verifying_blurb {
  display: none;
}

body.page-loading input {
  pointer-events: none;
  opacity: 0.6;
}

body.page-loading button {
  opacity: 0.6;
}

.input-loader {
  position: absolute;
  right: 12px;
  bottom: 10px;
  width: 16px;
  height: 16px;
  margin-top: -8px;
  border: 2px solid rgba(0, 0, 0, 0.2);
  border-top-color: rgba(0, 0, 0, 0.6);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  pointer-events: none;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.entry-item {
  position: relative;
}
