/* Make sign-in and access requests visible together on the public portfolio entrance. */
* { box-sizing: border-box; }
body { margin: 0; min-height: 100dvh; display: grid; place-items: center; padding: 48px 24px; background: #181c20; color: #e7e9e8; font: 18px/1.6 Arial, Helvetica, sans-serif; }
main { width: min(100%, 540px); }
.stamp { display: grid; place-items: center; width: 54px; height: 54px; background: #344751; color: #b8cbd6; font: 16px/1 ui-monospace, monospace; }
.eyebrow { margin: 28px 0 8px; font: 12px/1.5 ui-monospace, monospace; }
h1 { margin: 0 0 14px; font-size: clamp(38px, 9vw, 56px); line-height: 1.1; letter-spacing: -.035em; }
h2 { margin: 0 0 8px; font-size: 24px; font-weight: 500; }
p { color: #a7afb2; }
.intro { margin: 0; }
.signin-panel { margin: 28px 0 32px; }
.signin-panel p { font-size: 15px; margin: 14px 0 0; max-width: 48ch; }
.primary { display: inline-flex; align-items: center; justify-content: space-between; gap: 64px; padding: 11px 20px; background: #303b46; border: 1px solid #687788; border-radius: 4px; text-decoration: none; }
.primary:hover, button:hover { background: #3a4753; }
.request-panel { border-top: 1px solid #3d464c; padding-top: 28px; }
.request-panel > p { margin: 8px 0 20px; font-size: 16px; }
form { margin: 20px 0; }
label { display: block; margin-bottom: 8px; font-size: 15px; }
input { width: 100%; border: 1px solid #687788; background: #20262b; color: inherit; padding: 12px; border-radius: 4px; font: inherit; }
button { border: 1px solid #687788; border-radius: 4px; padding: 12px 20px; background: transparent; color: #e7e9e8; font: inherit; cursor: pointer; }
button:disabled { opacity: .6; cursor: wait; }
a { color: #e7e9e8; text-underline-offset: 4px; }
:focus-visible { outline: 2px solid #b8cbd6; outline-offset: 4px; }
.privacy { font-size: 13px; }
#request-status[data-error="true"] { color: #ffb1a8; }
[hidden] { display: none !important; }
.honeypot { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
@media (max-width: 600px) { body { padding: 28px 24px; } .eyebrow { margin-top: 20px; } .signin-panel { margin: 24px 0; } .request-panel { padding-top: 24px; } }
