@font-face {
  font-family: "IBM Plex Mono";
  src: url("fonts/IBMPlexMono-Regular.woff") format("woff");
  font-weight: 400;
}
@font-face {
  font-family: "IBM Plex Mono";
  src: url("fonts/IBMPlexMono-Bold.woff") format("woff");
  font-weight: 700;
}
@font-face {
  font-family: "NEXT";
  src: url("fonts/NEXT-Book-Regular.eot");
  src: url("fonts/NEXT-Book-Regular.eot?#iefix") format("embedded-opentype"), url("fonts/NEXT-Book-Regular.woff2") format("woff2"), url("fonts/NEXT-Book-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "NEXT";
  src: url("fonts/NEXT-Book-Medium.eot");
  src: url("fonts/NEXT-Book-Medium.eot?#iefix") format("embedded-opentype"), url("fonts/NEXT-Book-Medium.woff2") format("woff2"), url("fonts/NEXT-Book-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
}
* {
  box-sizing: border-box;
}

body {
  background-color: #ffffff;
  color: #282d6e;
  font-family: "IBM Plex Mono", monospace;
  margin: 0;
  -webkit-font-smoothing: antialiased;
}
body.iframe-mode {
  margin: 0;
  padding: 0;
  height: 100%;
  overflow: hidden;
  background: #fff;
}
body.iframe-mode iframe {
  width: 100%;
  height: 100vh;
  border: none;
}

.client-body {
  background: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  width: 100vw;
  overflow: hidden;
}
.client-body .login-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  width: 100%;
  max-width: 500px;
  padding: 20px;
}
.client-body .logo-display {
  width: 100%;
  margin-bottom: 0.5rem;
}
.client-body .logo-display svg, .client-body .logo-display img {
  width: 100%;
  height: auto;
  fill: #282d6e;
}
.client-body .logo-display svg path, .client-body .logo-display img path {
  fill: #282d6e;
}
.client-body form {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 15px;
  width: 100%;
}
@media (max-width: 500px) {
  .client-body form {
    flex-direction: column;
  }
}
.client-body input[type=password] {
  flex: 1;
  min-width: 250px;
  padding: 1rem 1.5rem;
  background: transparent;
  border: 2px solid #282d6e;
  border-radius: 50px;
  color: #282d6e;
  font-family: "IBM Plex Mono", monospace;
  font-size: 1rem;
  outline: none;
  transition: all 0.2s ease;
}
.client-body input[type=password]::-moz-placeholder {
  color: rgba(40, 45, 110, 0.5);
  font-style: italic;
}
.client-body input[type=password]::placeholder {
  color: rgba(40, 45, 110, 0.5);
  font-style: italic;
}
.client-body button {
  padding: 1rem 2.5rem;
  background: #282d6e;
  color: white;
  border: 2px solid #282d6e;
  border-radius: 50px;
  font-family: "NEXT", sans-serif;
  font-weight: 500;
  font-size: 1rem;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.1s ease, background 0.2s;
}
.client-body button:hover {
  background: rgb(46.8, 52.65, 128.7);
}
.client-body .error-msg {
  color: #e74c3c;
  font-family: "IBM Plex Mono";
  font-size: 0.9rem;
  text-align: center;
}