body.login-body {
  min-height: 100vh;
  margin: 0;
  background: #fafafa;
  color: #2c2c2c;
  font-family: Arial, Helvetica, sans-serif;
}

.login-shell {
  width: min(680px, calc(100% - 32px));
  margin: 72px auto 0;
}

.login-title {
  text-align: center;
  font-size: 56px;
  font-weight: 300;
  letter-spacing: 1px;
}

.login-version {
  text-align: center;
  margin-top: 4px;
  margin-bottom: 14px;
  font-size: 13px;
  color: #333;
}

.login-panel {
  background: #fff;
  border-radius: 2px;
  padding: 28px 28px 22px;
  box-shadow:
    0 2px 4px rgba(0, 0, 0, 0.18),
    0 1px 10px rgba(0, 0, 0, 0.08);
}

.field-group {
  position: relative;
  margin-bottom: 34px;
}

.field-group label {
  display: block;
  color: #1976d2;
  font-size: 12px;
  margin-bottom: 16px;
}

.field-group input {
  width: 100%;
  border: 0;
  border-bottom: 2px solid #1976d2;
  outline: 0;
  padding: 8px 0 7px;
  font-size: 18px;
  background: transparent;
  box-sizing: border-box;
}

.password-row label {
  color: #666;
  font-size: 18px;
  margin-bottom: 4px;
}

.password-row input {
  border-bottom: 1px solid #999;
  padding-right: 42px;
}

.login-actions {
  display: flex;
  align-items: center;
  margin-top: 8px;
}

.login-actions button {
  margin-left: auto;
}

.forgot-link {
  font-size: 13px;
  font-weight: bold;
  letter-spacing: 1.4px;
}

.login-actions button {
  border: 0;
  background: transparent;
  color: #1976d2;
  font-size: 14px;
  letter-spacing: 1.7px;
  font-weight: bold;
  cursor: pointer;
  padding: 10px 0 10px 18px;
}

.login-error {
  color: #c62828;
  background: #ffebee;
  border-left: 4px solid #c62828;
  padding: 10px 12px;
  margin-bottom: 22px;
  font-size: 14px;
}

.floating-field {
  position: relative;
  margin-bottom: 38px;
}

.floating-field input {
  width: 100%;
  border: 0;
  border-bottom: 1px solid #999;
  outline: 0;
  padding: 22px 42px 7px 0;
  font-size: 18px;
  background: transparent;
  box-sizing: border-box;
}

.floating-field label {
  position: absolute;
  left: 0;
  top: 22px;
  color: #666;
  font-size: 18px;
  pointer-events: none;
  transition: all 0.16s ease;
}

.floating-field input:focus {
  border-bottom: 2px solid #1976d2;
}

.floating-field input:focus + label,
.floating-field input:not(:placeholder-shown) + label {
  top: 0;
  font-size: 12px;
  color: #1976d2;
}

.eye-button {
  position: absolute;
  right: 0;
  bottom: 1px;

  width: 38px;
  height: 34px;

  border: none;
  background: transparent;
  color: #666;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 0;
  margin: 0;
  line-height: 1;
  cursor: pointer;
}

.eye-button svg {
  width: 22px;
  height: 22px;
  display: block;
  flex-shrink: 0;
}


@media (max-width: 600px) {
  .login-shell {
    margin-top: 42px;
  }

  .login-title {
    font-size: 38px;
  }

  .login-panel {
    padding: 24px 20px 18px;
  }
}