/* collabo-login.css - pre-auth sign-in page */

* { box-sizing: border-box; }

body {
  margin: 0;
  padding: 0;
  background: #f4f6f9;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  color: #1c2733;
}

.lg-wrap {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.lg-card {
  width: 100%;
  max-width: 400px;
  background: #fff;
  border: 1px solid #e2e6ec;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(28, 39, 51, .10);
  overflow: hidden;
}

.lg-head {
  background: #14406e;
  padding: 26px 28px;
  text-align: center;
}
.lg-head img { height: 44px; vertical-align: middle; border: 0; }

.lg-name {
  color: #fff;
  font-size: 23px;
  font-weight: 700;
  letter-spacing: .05em;
  vertical-align: middle;
  margin-left: 10px;
}

.lg-body { padding: 26px 28px 24px; }

.lg-title { font-size: 16px; font-weight: 600; margin: 0 0 18px; }

.lg-co { font-size: 12.5px; color: #6b7685; margin: -14px 0 18px; }

.lg-field { margin-bottom: 14px; }

.lg-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: #6b7685;
  margin-bottom: 5px;
}

.lg-input {
  width: 100%;
  height: 40px;
  padding: 0 12px;
  font-size: 14px;
  color: #1c2733;
  border: 1px solid #d4dae2;
  border-radius: 8px;
  background: #fff;
}
.lg-input:focus {
  outline: none;
  border-color: #1b6fc4;
  box-shadow: 0 0 0 3px rgba(27, 111, 196, .14);
}

.lg-btn {
  width: 100%;
  height: 42px;
  margin-top: 6px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  background: #14406e;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
}
.lg-btn:hover { background: #1b5390; }

.lg-foot { margin-top: 16px; text-align: center; }
.lg-foot a { font-size: 13px; color: #1b6fc4; text-decoration: none; }
.lg-foot a:hover { text-decoration: underline; }

.lg-err {
  margin: 0 0 16px;
  padding: 10px 12px;
  font-size: 13px;
  color: #8a1c1c;
  background: #fdf0f0;
  border: 1px solid #f2d0d0;
  border-radius: 8px;
}

.lg-msg {
  font-size: 13.5px;
  line-height: 1.55;
  color: #46505d;
  margin: 0 0 4px;
}