/*
Theme Name: Vectris Customer Portal
Theme URI: https://vectris.app
Author: Vectris Labs, Inc
Author URI: https://vectrislabs.ai
Description: Minimal single-page customer login portal for vectris.app. Displays the Vectris wordmark from vectrislabs.ai, a login form, and a Vectris Labs, Inc footer. Not connected to real authentication.
Version: 1.1.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
License: Proprietary
License URI: https://vectrislabs.ai
Text Domain: vectris-portal
*/

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: #e8eff5;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: #0b1e3f;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
  min-height: 100vh;
}
.vp-wrap {
  width: 100%;
  max-width: 400px;
}
.vp-card {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(11, 30, 63, 0.08);
  padding: 2.5rem 2.25rem;
  width: 100%;
}
.vp-logo-wrap {
  text-align: center;
  margin-bottom: 1.75rem;
}
.vp-logo-wrap img {
  max-width: 180px;
  height: auto;
  display: inline-block;
}
.vp-divider {
  height: 1px;
  background: #e5ebf2;
  margin: 1.5rem 0;
}
.vp-welcome {
  font-size: 14px;
  color: #4a5a72;
  line-height: 1.55;
  text-align: center;
  margin: 0 0 1.75rem;
}
.vp-welcome a {
  color: #0b1e3f;
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid #0b1e3f;
}
.vp-field {
  margin-bottom: 1rem;
}
.vp-field label {
  display: block;
  font-size: 13px;
  color: #4a5a72;
  margin-bottom: 6px;
  font-weight: 500;
}
.vp-field input {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #d5dde8;
  border-radius: 8px;
  font-size: 14px;
  background: #f7f9fc;
  color: #0b1e3f;
  outline: none;
  transition: border-color 0.15s, background 0.15s;
  font-family: inherit;
}
.vp-field input:focus {
  border-color: #0b1e3f;
  background: #ffffff;
}
.vp-login-btn {
  width: 100%;
  padding: 12px;
  background: #0b1e3f;
  color: #ffffff;
  border: none;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  letter-spacing: 0.02em;
  margin-top: 0.5rem;
  font-family: inherit;
  transition: background 0.15s, transform 0.05s;
}
.vp-login-btn:hover { background: #142a54; }
.vp-login-btn:active { transform: scale(0.99); }
.vp-msg {
  font-size: 12px;
  color: #a03d3d;
  text-align: center;
  margin-top: 12px;
  min-height: 16px;
}
.vp-footnote {
  font-size: 11px;
  color: #8a97ab;
  text-align: center;
  margin: 1.5rem 0 0;
  line-height: 1.5;
}
.vp-page-footer {
  text-align: center;
  font-size: 13px;
  color: #0b1e3f;
  font-weight: 500;
  margin-top: 1.5rem;
  letter-spacing: 0.03em;
}

/* Suppress WP admin bar layout push on the portal front */
html { margin-top: 0 !important; }
* html body { margin-top: 0 !important; }
