.dst-login-wrapper {
  display: flex;
  max-width: 360px;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  align-self: stretch;
  margin: 0 auto;
}

.dst-login-form {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  align-self: stretch;
}

.dst-form-row {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  align-self: stretch;
}

.dst-form-row label {
  display: flex;
  align-items: flex-start;
  gap: 2px;
  overflow: hidden;
  color: #222;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
}

.dst-form-row input[type="text"],
.dst-form-row input[type="password"] {
  display: flex;
  padding: 10px 14px;
  align-items: center;
  gap: 8px;
  align-self: stretch;
  border-radius: 8px;
  border: 1px solid #D5D7DA;
  background: #FFF;
  box-shadow: 0px 1px 2px 0px rgba(10, 13, 18, 0.05);
  font-size: 18px;
}

.dst-checkbox-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    text-align: left;
    flex: 1 0 0;
    font-size: 12px;
    line-height: 1.4;
    font-weight: 400;
}
.dst-checkbox-wrapper input[type="checkbox"] {
  display: flex;
  padding-top: 2px;
  justify-content: center;
  align-items: center;
}

.dst-login-link {
  color: #1BAED1;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}

.dst-login-button {
  display: flex;
  padding: 10px 16px;
  justify-content: center;
  align-items: center;
  gap: 6px;
  align-self: stretch;
  border-radius: 8px;
  border: 2px solid rgba(255, 255, 255, 0.12);
  background: #85C440;
  box-shadow:
    0px 0px 0px 1px rgba(10, 13, 18, 0.18) inset,
    0px -2px 0px 0px rgba(10, 13, 18, 0.05) inset,
    0px 1px 2px 0px rgba(10, 13, 18, 0.05);
  color: #FFF;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
}

.dst-login-register {
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 4px;
  align-self: stretch;
  color: #222;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}

.dst-login-register a {
  color: #1BAED1;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}


.dst-form-row-label-group {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.generate-password-link {
  font-size: 14px;
  text-decoration: underline;
  color: #1BAED1;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}

.password-strength-bar {
  position: relative;
  height: 16px;
  width: 100%;
  background: #eee;
  border-radius: 5px;
  margin-top: 8px;
  overflow: hidden;
}

.password-strength-bar .bar {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background: red;
  transition: width 0.3s ease, background-color 0.3s ease;
  z-index: 1;
}

.password-strength-bar .label-left,
.password-strength-bar .label-right {
  position: absolute;
  top: -4px;
  font-size: 10px;
  color: #666;
  z-index: 2;
}

.password-strength-bar .label-left {
  left: 10px;
}

.password-strength-bar .label-right {
  right: 10px;
}

.click-to-copy-password {
  cursor: pointer;
  color: #1BAED1;
  font-weight: bold;
  margin-top: 0;
  display: inline-block;
}

.generated-password-row {
    text-align: right;
    width: 100%;
    line-height: 1;
    margin-top: -5px;
}


.dst-login-error {
    background: #ff000017;
    padding: 1rem;
    border: 1px solid #d41212;
    border-radius: 5px;
    line-height: 20px;
    color: #d41212;
}

.dst-notice.success {
    background: #85c4421a;
    padding: 1rem;
    border: 1px solid #85c442;
    border-radius: 5px;
    line-height: 20px;
    color: #32560c;
}