:root {
  --text-color: #1c91a9;
  --text-color-title: #1c91a9;
  --text-color-hight: #1c91a9;
  --text-color-error: #eb6c2d;
  --text-color-flash: #429a19;
  --text-color-star: #49a7ba;
  --text-color-button: whitesmoke;
  --bg: #e0e0e0;
  --shadow-light: #ffffff;
  --shadow-dark: #bebebe;
}

* {
  font-family: "JetBrains Mono", sans-serif;
  font-size: 13px;
}

body {
  /*  font-size: 0.8rem; */
  background: var(--bg);
  color: var(--text-color);
}
.flex-centered {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: calc(100vh - 1.2rem);
}

.flex-main {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  width: 25rem;
  padding: 0.5rem 0;
/*  touch-action: none; */
}

@media only screen and (max-width: 768px) {
  * {
    font-size: 16px;
  }
  .flex-main {
   width: 90vw;
  }
}

.flex-item {
  position: relative;
  display: flex;
  justify-content: start;
}

.item {
  width: 100%;
  padding: 0.7rem;
  border: none;
  background: var(--bg);
      outline: none;
}

.deboss {
  border-radius: 9px;
  box-shadow: inset 2px 2px 4px var(--shadow-dark),
    inset -2px -2px 4px var(--shadow-light);
  transition: color 0.2s ease, box-shadow 0.15s ease, transform 0.08s ease;
}

.emboss {
  border-radius: 9px;
  box-shadow: 2px 2px 4px var(--shadow-dark), -2px -2px 4px var(--shadow-light);
  transition: color 0.2s ease, box-shadow 0.15s ease, transform 0.08s ease;
}

.title {
  text-align: center;
  color: var(--text-color-title);
  font-size: x-large;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.small {
  color: var(--text-color-star);
  font-size: x-small;
  padding: 0 1rem;
}

.left-ajust {
  margin-left: 0.7rem;
}

.top-ajust {
  margin-top: -0.3rem;
}

.bottom-ajust {
  margin-bottom: -0.3rem;
}

.input {
  font-size: inherit;
  color: var(--text-color-hight);
  margin: 0.5rem 1rem;
}

.input:hover {
  color: var(--text-color-hight);
  box-shadow: inset 1px 1px 2px var(--shadow-dark),
    inset -1px -1px 2px var(--shadow-light);
}

.input.is-active {
  color: var(--text-color-hight);
  box-shadow: inset 1px 1px 2px var(--text-color-hight),
    inset -1px -1px 2px var(--text-color-hight);
}

.input::placeholder {
  color: var(--text-color-hight);
  opacity: 0.4;
}

.center {
  text-align: center;
}

.button {
  background: var(--text-color-hight);
  color: var(--bg);
  color: var(--text-color-button);
  margin: 0.6rem 1rem;
  margin-top: 1rem;
  cursor: default;
}

.button a {
  color: var(--text-color-button);
  text-decoration: none;
}

.button:hover {
  background: rgba(32, 162, 188, 1);
  box-shadow: none;
  transform: translate(0px, 1px);
}

.button:active {
  box-shadow: inset 2px 2px 4px var(--shadow-dark),
    inset -2px -2px 4px var(--shadow-light);
  transform: translate(0px, 1px);
}

.links {
  text-align: center;
  margin-bottom: .3rem;
}

.links a {
  font-size: 0.83rem; 
  color: var(--text-color);
  text-decoration: none;
  transition: color .2s ease;
}

.links a:hover {
  color: var(--text-color-hight);
  font-weight: bold;
}


.flex-info {
  display: flex;
  width: 100%;
  margin: 0 1rem;
  margin-bottom: 1rem;
  border: none;
  background: var(--bg);
}

.text-info {
  width: 100%;
  padding: 0.7rem;
  border: none;
  font-size: 0.9rem;
  cursor: default;
}

.successdisp {
  display: flex;
  color: var(--text-color-flash);
  --shadow-color: var(--text-color-flash);
}
.errordisp {
  display: flex;
  color: var(--text-color-error);
  --shadow-color: var(--text-color-error);
}
.deboss-disp {
  border-radius: 9px;
  box-shadow: 0 0 3px var(--shadow-color);
}
.emboss-disp {
  border-radius: 9px;
  box-shadow: inset 0 0 3px var(--shadow-color);
}

.margin-eye  {
  padding-right: 2.6rem;
}

.toggle-eye {
  position: absolute;
  right: 1.2rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-color);
  transition: color 0.18s ease, transform 0.08s ease;
  display: inline-flex;
  align-items: center;
  opacity: 0.7;
      outline: none;
}

.toggle-eye:hover {
  color: var(--text-color-hight);
  opacity:1;
}

.toggle-eye:active {
  transform: translateY(-50%) scale(0.96);
}

.toggle-eye svg {
  width: 1.5rem;
  height: 1.5rem;
  pointer-events: none;
}


