/* Code and Copyright © 2024+ by KRUG IT. You are not permitted to use this code or any part thereof without the express written consent of KRUG IT. */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  user-select: none;
  font-family: Calibri, Arial, Helvetica, sans-serif;
}
html {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}
body {
  background-image: url(../img/back.webp);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
.cnt {
  display: flex;
  flex-direction: column;
  max-width: 95vw;
}
.img {
  width: auto;
  max-width: 100%;
  height: 100%;
}
.login {
  display: flex;
  flex-direction: column;
  width: calc(100% - 6px);
  row-gap: 8px;
  justify-content: center;
  text-align: center;
  box-shadow: 0 0 8px black;
  border-radius: 15px;
  padding: 15px;
  max-width: 90vw;
  background: rgba(192, 219, 255, 0.23);
  backdrop-filter: blur(5px);
  align-self: center;
  margin-top: 25px;
}
h1 {
  margin-top: -10px;
  color: #496b97;
}
form {
  display: flex;
  flex-direction: column;
  row-gap: 8px;
}
.frmgrp {
  position: relative;
  margin: 0;
  display: flex;
  align-items: center;
  flex-direction: column;
  color: grey;
}
.fgp {
  padding: 5px 0;
}
input {
  border-radius: 10px;
  border: 1px solid silver;
  box-shadow: inset 1px 1px 2px silver, 1px 1px 2px black;
}
#ushrt, #mid {
  text-transform: uppercase;
}
.fields:focus + .frmlab, .fields:not(:placeholder-shown) + .frmlab {
  top: 5px;
  font-size: 0.85rem;
  color: #007BFF;
  border: 1px solid silver;
  box-shadow: 0 0 2px silver;
}
.fields:focus + .frmlab .tipsp, .fields:not(:placeholder-shown) + .frmlab .tipsp {
  padding-bottom: 0px;
}
.fields:focus, .fields:not(:placeholder-shown):not(select) {
  margin-top: 0.5rem;
}
.fields {
  width: 100%;
  border-radius: 15px;
  font-weight: bold;
  border: none;
  outline: none;
  padding: 12px;
  background-color: #EBEEF1;
  box-shadow: inset 6px 6px 6px -1px rgba(10, 99, 169, 0.16), inset -6px -6px 6px -1px rgba(255, 255, 255, 0.70);
  transition: 0.3s ease all;
  overflow: hidden;
}
.frmlab {
  position: absolute;
  left: 0.6rem;
  top: 18px;
  pointer-events: none;
  transition: 0.3s ease all;
  border: none;
  box-shadow: none;
  border-radius: 12px;
  background: #EBEEF1;
  color: grey;
  padding: 0 5px;
}
input, .frmlab {
  font-family: Calibri, Arial, Helvetica, sans-serif;
  font-size: medium;
  font-weight: bold;
}
.formerr {
  color: orangered;
  width: 100%;
  font-size: 0.9rem;
  font-weight: bold;
  top: 50px;
  pointer-events: none;
  max-height: 0;
  opacity: 0;
  transition: .3s ease all;
}
.errop {
  max-height: 150px;
  opacity: 1;
}
.sbmbtn {
  background: linear-gradient(grey, black);
  border-radius: 15px;
  font-size: large;
  font-weight: bold;
  padding: 1px 8px 3px 8px;
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  box-shadow: 0 0 2px black;
  color: white;
  text-shadow: rgba(0, 0, 0, 0.55) 0px 0px 1px, rgba(0, 0, 0, 0.55) 0px 0px 1px, rgba(0, 0, 0, 0.55) 0px 0px 1px;
  cursor: pointer;
}
.sbmbtn:hover {
  color: lime;
  box-shadow: 0 0 8px green;
}
.tipsp {
  position: relative;
  margin-left: 5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 1px;
  width: 14px;
  height: 14px;
  font-weight: bold;
  border-radius: 50px;
  border: 1px solid rgb(75, 168, 205);
  box-shadow: 0 0 3px rgb(75, 168, 205);
  transition: .3s all;
  cursor: help;
  pointer-events: all !important;
}
.tipsp:hover {
  background: black;
  color: white;
}
.tipsp .tip {
  visibility: hidden;
  max-width: 333px;
  background-color: black;
  color: #fff;
  text-align: center;
  height: auto;
  width: auto;
  min-width: 185px;
  border-radius: 12px;
  padding: 5px 3px;
  position: absolute;
  font-weight: normal;
  font-size: medium;
  z-index: 1;
  bottom: 138%;
  opacity: 0;
  transition: .3s all;
}
.tip {
  text-wrap: wrap;
}
.tipsp:hover .tip {
  visibility: visible;
  opacity: 1;
}
.hdn {
  display: none;
}
#stat {
  margin-top: 12px;
  font-weight: bold;
  max-width: 85vw;
  text-align: center;
  color: #455a64;
}
.suc {
  padding: 3px;
  background: #beffe2;
  border-radius: 8px;
  box-shadow: 0 0 5px green;
}
.or {
  color: orangered;
}
.gr {
  color: green;
}
.dse {
  margin-top: -10px;
}
.dse a {
  color: #0e3971;
  text-decoration: none;
}