/*login.css v 26.04.23.1*/
body {
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  margin: 0;
  min-height: 100vh;
  background: #173cff;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 14px;
}

.box {
  width: 225px;
  min-height: 401px;
  padding: 18px 16px 16px;
  border-radius: 18px;
  background: #3341b3 url('/favicon_U.ico') no-repeat center center;
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

h2 {
  margin: 0 0 14px;
  text-align: center;
  font-size: 19px;
  font-weight: 700;
  color: black;
}

form {
  display: grid;
  gap: .75rem;
  margin: 0;
}

label {
  font-weight: 700;
  font-size: 14px;
  color: black;
}

input[type="text"],
input[type="password"] {
  width: 100%;
  /*! box-sizing: border-box; */
  padding: .8rem .9rem;
  border: 2px solid rgba(255,255,255,0.85);
  border-radius: .7rem;
  background: rgba(255,255,255,0.72);
  font-size: 15px;
}

button {
  padding: .65rem .9rem;
  border: 1px solid white;
  border-radius: 1rem;
  cursor: pointer;
  background: #a80707;
  color: #fff;
  font-weight: 600;
  width: 98%;
}

.button2 {
  background: #b50000;
}

.buttonsmall {
  margin: 2px 0 0;
  background: #173f93;
  border-radius: 18px;
  height: 32px;
  padding: 1px 10px;
  width: 100%;
  font-size: 14px;
}

.err {
  color: #fff;
  margin-bottom: .75rem;
}

.net-under-2g { background: #5a0000; color: #fff; }
.net-2g { background: #c00000; color: #fff; }
.net-3g { background: #f0a000; color: #000; }
.net-4g { background: #2a8f2a; color: #fff; }
.net-unknown { background: rgba(0,0,0,0.25); color: #fff; }
```css
body {
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  margin: 0;
  min-height: 100vh;
  background: #173cff;
  font-weight: 600;
  color: black;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 14px;
}

.box {
  width: 225px;
  min-height: 401px;
  border: 0;
  margin: 0;
  padding: 18px 16px 16px;
  border-radius: 18px;
  background: #3341b3 url('/favicon_U.ico') no-repeat center center;
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
}


.err,
button {
  padding: .8rem .9rem;
  border: 2px solid white;
  border-radius: 1.1rem;
  cursor: pointer;
  background: #b50000;
  color: #fff;
  font-weight: 700;
  width: 100%;
  box-sizing: border-box;
  box-shadow: none;
}

h2 {
  margin: 0 0 14px;
  text-align: center;
  font-size: 19px;
  font-weight: 700;
}

form {
  display: grid;
  gap: .75rem;
  margin: 0;
}

label {
  font-weight: 700;
  font-size: 14px;
}

input[type="text"],
input[type="password"] {
  width: 93%;
  box-sizing: border-box;
  padding: .6rem .7rem;
  border: 2px solid rgba(255,255,255,0.85);
  border-radius: .7rem;
  background: rgba(255,255,255,0.72);
  font-size: 15px;
}

button {
  padding: .65rem .9rem;
  border: 1px solid white;
  border-radius: 1rem;
  cursor: pointer;
  background: #a80707;
  color: #fff;
  font-weight: 600;
  width: 98%;
  border-color: white;
}

.button2 {
  background: #b67676;
}

.buttonsmall {
  margin: 2px 0 0;
  background: #173f93;
  border-radius: 18px;
  height: 22px;
  vertical-align: top;
  padding: 1px 10px;
  width: 70%;
  font-size: 11px;
}

.err {
  color: #fff;
  margin-bottom: .75rem;
}

.net-class-box {
  margin: .5rem 0;
  border-color: white;
  padding: .35rem .6rem;
  border-radius: .8rem;
  font-weight: 600;
  text-align: center;
  background: rgba(0,0,0,0.25);
}

.net-under-2g {
  background: #5a0000;
  color: #fff;
}

.net-2g {
  background: #c00000;
  color: #fff;
}

.net-3g {
  background: #f0a000;
  color: #000;
}

.net-4g {
  background: #2a8f2a;
  color: #fff;
}

.net-unknown {
  background: rgba(0,0,0,0.25);
  color: #fff;
}