.panel-login-page {
  margin: 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0f1218;
  color: #e7eaf0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

.panel-login {
  width: min(360px, 92vw);
  padding: 28px 24px 24px;
  border: 1px solid #2a3140;
  border-radius: 10px;
  background: #1a1f28;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
}

.panel-login__title {
  margin: 0 0 4px;
  font-size: 22px;
  font-weight: 600;
}

.panel-login__subtitle {
  margin: 0 0 20px;
  font-size: 13px;
  color: rgba(231, 234, 240, 0.55);
}

.panel-login__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
  font-size: 12px;
  color: rgba(231, 234, 240, 0.7);
}

.panel-login__field input {
  height: 36px;
  padding: 0 10px;
  border: 1px solid #2a3140;
  border-radius: 6px;
  background: #12161d;
  color: #e7eaf0;
  font-size: 14px;
}

.panel-login__field input:focus {
  outline: none;
  border-color: #3d7cf5;
}

.panel-login__error {
  margin: 0 0 12px;
  font-size: 12px;
  color: #f87171;
}

.panel-login__submit {
  width: 100%;
  height: 38px;
  border: none;
  border-radius: 6px;
  background: #3d7cf5;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}

.panel-login__submit:hover {
  background: #5a91f7;
}

.panel-login__submit:disabled {
  opacity: 0.6;
  cursor: default;
}
