/*
  Alpha Theme — Bootstrap 5 Conversion
  Original design: HTML5 UP (html5up.net | @ajlkn)
  Bootstrap conversion: Storm Creative Design
*/

/* ── Google Font ─────────────────────────────────────────── */
@import url("https://fonts.googleapis.com/css2?family=Source+Sans+3:ital,wght@0,300;0,400;1,300;1,400&display=swap");

/* ── CSS Custom Properties ───────────────────────────────── */
:root {
  --alpha-bg:        #f5f5f5;
  --alpha-text:      #777;
  --alpha-heading:   #006F61;
  --alpha-border:    #e5e5e5;
  --alpha-primary:   #e89980;
  --alpha-primary-h: #ecaa96;
  --alpha-primary-d: #e4886a;
  --alpha-accent2:   #e89980;
  --alpha-accent3:   #7fcdb8;
  --alpha-accent4:   #90b0ba;
  --alpha-accent5:   #e5cb95;
  --alpha-dark:      #006F61;
  --alpha-darker:    #2b2b2b;
  --alpha-muted:     #999;
  --alpha-light-bg:  #f0f0f0;
  --alpha-white:     #ffffff;

}

/* ── Base ─────────────────────────────────────────────────── */
body {
  background-color: var(--alpha-bg);
  color: var(--alpha-text);
  font-family: "Source Sans 3", sans-serif;
  font-size: 16pt;
  font-weight: 300;
  line-height: 1.65em;
  letter-spacing: -0.015em;
}

/* Fluid font scaling */
@media (max-width: 1680px) { body { font-size: 13pt; } }
@media (max-width: 1280px) { body { font-size: 13pt; } }
@media (max-width:  980px) { body { font-size: 13pt; } }
@media (max-width:  736px) { body { font-size: 13pt; } }
@media (max-width:  480px) { body { font-size: 13pt; } }

a {
  color: var(--alpha-primary);
  text-decoration: none;
  border-bottom: 1px dotted var(--alpha-primary);
  transition: color 0.2s ease-in-out, border-bottom-color 0.2s ease-in-out;
}
a:hover {
  color: var(--alpha-primary-h);
  border-bottom-color: transparent;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--alpha-heading);
  font-weight: 300;
  line-height: 1em;
  margin: 0 0 0.5em 0;
}
h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
  color: inherit;
  text-decoration: none;
  border: 0;
}
h2 { font-size: 2.25em;  letter-spacing: -0.035em; line-height: 1.15em; }
h3 { font-size: 1.75em;  letter-spacing: -0.025em; line-height: 1.5em; }
h4 { font-size: 1.1em;   line-height: 1.5em; }
h5 { font-size: 0.9em;   line-height: 1.5em; }
h6 { font-size: 0.7em;   line-height: 1.5em; }

@media (max-width: 736px) {
  h2 { font-size: 1.75em; letter-spacing: -0.025em; line-height: 1.35em; }
  h3 { font-size: 1.5em; }
  h4 { font-size: 1em; }
}

strong, b { color: var(--alpha-heading); font-weight: 400; }
p { margin: 0 0 2em 0; }

hr {
  border: 0;
  border-bottom: solid 2px var(--alpha-border);
  margin: 2em 0;
}

blockquote {
  border-left: solid 4px var(--alpha-border);
  font-style: italic;
  margin: 0 0 2em 0;
  padding: 0.5em 0 0.5em 2em;
}

pre {
  background: #f8f8f8;
  border-radius: 6px;
  border: solid 1px var(--alpha-border);
  font-family: monospace;
  font-size: 0.9em;
  line-height: 1.75em;
  margin: 0 0 2em 0;
  overflow-x: auto;
  padding: 1em 1.5em;
}

code {
  background: #f8f8f8;
  border-radius: 6px;
  border: solid 1px var(--alpha-border);
  font-family: monospace;
  font-size: 0.9em;
  margin: 0 0.25em;
  padding: 0.25em 0.65em;
}
.fa-inverse {position: relative;}
/* ── Page wrapper ─────────────────────────────────────────── */
#page-wrapper {
  padding-top: 120px; /* height of fixed header */
}
body.landing #page-wrapper {
  padding-top: 0;
}

/* ── Header / Navbar ──────────────────────────────────────── */
#hero {
    background-attachment: scroll, fixed;
    background-color: #666;
    background-image: url(images/overlay.png), url(../../images/wirral-learning-hub-home.jpg);
    background-position: top left, center center;
    background-repeat: repeat, no-repeat;
    background-size: auto, cover;
    color: #fff;
    padding: 12em 0 20em 0;
    text-align: center;
}
#site-header {
  background: var(--alpha-dark);
  height: 3.25em;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1030;
  display: flex;
  align-items: center;
}
#site-header-internal {
  background: var(--alpha-dark);
  height: 120px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1030;
  display: flex;
  align-items: center;
}
#site-header-internal .site-brand {font-size: 1.5em;}
#site-header.alt {
  background: transparent;
  position: absolute;
}
#site-header.reveal {
  animation: reveal-header 0.5s ease;
}

@keyframes reveal-header {
  from { top: -5em; }
  to   { top: 0; }
}

.site-brand {
  color: #fff !important;
  font-weight: 400;
  font-size: 1em;
  border: 0 !important;
  white-space: nowrap;
  padding: 0 1.25em;
  line-height: 3.25em;
  text-decoration: none;
}
.site-brand:hover { color: #fff !important; }

/* Bootstrap navbar overrides */
.navbar {
  padding: 0;
  height: 3.25em;
  background: var(--alpha-dark) !important;
}
.navbar.alt-nav {
  background: transparent !important;
}

.navbar-nav .nav-link {
  color: #fff !important;
  padding: 0 1em !important;
  line-height: 3.25em;
  border-radius: 6px;
  border: 0 !important;
  font-size: 1em;
  transition: background-color 0.2s ease;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus {
  background-color: rgba(153, 153, 153, 0.25);
  color: #fff !important;
}
.navbar-nav .nav-link .fa {
  color: #999;
  margin-right: 0.4em;
}

/* Header Sign Up button */
.navbar .btn-nav-outline {
  box-shadow: inset 0 0 0 2px #999;
  color: #fff !important;
  background: transparent;
  border-radius: 6px;
  padding: 0 1em;
  height: 2em;
  line-height: 2em;
  font-size: 1em;
  cursor: pointer;
  border: 0;
  text-decoration: none;
  display: inline-block;
  transition: background-color 0.2s ease;
  margin-left: 0.5em;
}
.navbar .btn-nav-outline:hover {
  background-color: rgba(153, 153, 153, 0.25);
}

/* Bootstrap dropdown overrides */
.dropdown-menu {
  background: #fff;
  border-radius: 6px;
  border: 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12), inset 0 0 0 1px rgba(229,229,229,0.5);
  padding: 0.5em 0;
  min-width: 11em;
  margin-top: 0.5em;
}
.dropdown-item {
  color: var(--alpha-text);
  padding: 0.25em 1em;
  font-size: 0.9em;
  border-top: solid 1px #f2f2f2;
  transition: background-color 0.15s ease;
}
.dropdown-item:first-child { border-top: 0; }
.dropdown-item:hover,
.dropdown-item:focus {
  background-color: var(--alpha-primary);
  color: #fff;
}

/* Mobile toggler */
.navbar-toggler {
  border: 0;
  padding: 0.5em;
  color: #fff;
  background: rgba(192,192,192,0.75);
  border-radius: 6px;
  margin-right: 0.75em;
}
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255%2C255%2C255%2C1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ── Banner ───────────────────────────────────────────────── */
#hero {
  height: 50vh; /* full screen hero */
  background-color: #666; /* fallback */
}

/* Video background */
.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 0;
}

/* Dark/texture overlay (optional but recommended) */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35); /* adjust darkness */
  z-index: 1;
}

/* Content layer */
.hero-content {
  z-index: 2;
  position: relative;
}

/* Logo scaling */
.hero-logo {
  max-width: 40%;
}
.menu-logo {max-height: 100px;margin-right: 1em;}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .hero-logo {
    max-width: 70%;
  }

  #hero {
    height: 70vh;
  }
}
#banner {
  background-color: #666;
  background-image: url("../images/overlay.png"), url("../images/banner.jpg");
  background-position: top left, center center;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  background-attachment: scroll, fixed;
  color: #fff;
  padding: 12em 0 20em 0;
  text-align: center;
}
@media (max-width: 1680px) { #banner { padding: 10em 0 18em 0; } }
@media (max-width: 1280px) { #banner { background-attachment: scroll; } }
@media (max-width:  736px) { #banner { padding: 4em 0; } }
@media (max-width:  480px) { #banner { padding: 5em 3em 4em 3em; } }

#banner h2 {
  color: #fff;
  font-size: 3.5em;
  line-height: 1em;
  margin: 0 0 0.5em 0;
}
@media (max-width: 1280px) { #banner h2 { font-size: 3.5em; } }
@media (max-width:  736px)  { #banner h2 { font-size: 2.25em; } }

#banner p {
  font-size: 1.25em;
  margin-bottom: 1.75em;
}
@media (max-width: 736px) { #banner p { font-size: 1.25em; } }

/* Banner buttons */
#banner .btn-banner {
  background-color: transparent;
  box-shadow: inset 0 0 0 2px rgba(255,255,255,0.5);
  color: #fff;
  min-width: 12em;
  border-radius: 6px;
  border: 0;
  padding: 0 2em;
  height: 3em;
  line-height: 3em;
  display: inline-block;
  text-decoration: none;
  font-weight: 400;
  cursor: pointer;
  transition: background-color 0.2s ease;
  margin: 0.25em 0.5em;
}
#banner .btn-banner:hover { background-color: rgba(255,255,255,0.1); }
#banner .btn-banner.btn-primary-banner {
  background: #fff;
  color: #666 !important;
  box-shadow: none;
}
#banner .btn-banner.btn-primary-banner:hover { background: rgba(255,255,255,0.9); }

/* ── Main section ─────────────────────────────────────────── */
#main {
  padding: 1em 0;
}
#main > header {
  text-align: center;
  margin: 0 0 3em 0;
}
#main > header h2 {
  font-size: 3.75em;
  margin: 0;
  text-align: left;
  font-weight: 700;
}
#main > header p {
  border-top: solid 2px var(--alpha-border);
  color: var(--alpha-text);
  display: inline-block;
  font-style: normal;
  margin: 1em 0 0 0;
  padding: 1em 0 1.25em 0;
}
#main > header h3 {
  color: var(--alpha-text);
  display: inline-block;
  font-style: normal;
  /*margin: 1em 0 0 0;
  padding: 1em 0 1.25em 0;
  border-top: solid 2px var(--alpha-border);*/
}
body.landing #main {
  margin-top: 0em;
}
@media (max-width: 736px) {
  #main { padding: 4em 0 0 0; }
  #main > header { margin: 0 2em 1.5em 2em; }
  #main > header h2 { font-size: 2em; }
  #main > header p { font-size: 1em; padding-bottom: 1em; }
  body.landing #main { padding: 0; margin-top: 0; }
}

/* ── Box ──────────────────────────────────────────────────── */
.alpha-box {
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 2px 0 0 var(--alpha-border);
  margin-bottom: 2em;
  padding: 1em 3em;
}
.alpha-box > :last-child { margin-bottom: 0; }
.alpha-box.special { text-align: center;z-index: 1000;position: relative;}
.alpha-box.alt {
  background: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  padding: 0 !important;
}

@media (max-width: 840px) {
  .alpha-box { padding: 3em 2em; }
}
@media (max-width: 736px) {
  .alpha-box { margin: 1em; overflow-x: hidden; padding: 2em 2em !important; }
}
@media (max-width: 480px) {
  .alpha-box { border-radius: 0; box-shadow: none; margin: 1em 0 0 0; padding: 3em 1em !important; }
}

/* Featured image inside box */
.alpha-box .image-featured {
  border-radius: 0;
  display: block;
  margin: 3em 0 3em -3em;
  width: calc(100% + 6em);
}
.alpha-box .image-featured img {
  display: block;
  width: 100%;
  border-radius: 0;
}
.alpha-box .image-featured:first-child {
  border-radius: 6px 6px 0 0;
  margin-bottom: 3em;
  margin-top: -3em;
}
.alpha-box .image-featured:first-child img { border-radius: 6px 6px 0 0; }
.alpha-box .image-featured:last-child {
  border-radius: 0 0 6px 6px;
  margin-bottom: -3em;
  margin-top: 3em;
}
.alpha-box .image-featured:last-child img { border-radius: 0 0 6px 6px; }

@media (max-width: 840px) {
  .alpha-box .image-featured { margin-left: -2em; width: calc(100% + 4em); }
  .alpha-box .image-featured:first-child { margin-bottom: 3em; margin-top: -3em; }
  .alpha-box .image-featured:last-child  { margin-bottom: -3em; margin-top: 3em; }
}
@media (max-width: 480px) {
  .alpha-box .image-featured { border-radius: 0; margin-left: -1em; width: calc(100% + 2em); }
  .alpha-box .image-featured img { border-radius: 0 !important; }
  .alpha-box .image-featured:first-child { margin-bottom: 3em; margin-top: -3em; }
  .alpha-box .image-featured:last-child  { margin-bottom: -3em; margin-top: 3em; }
}

/* ── Features box ─────────────────────────────────────────── */
.features-box {
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 2px 0 0 var(--alpha-border);
  margin-bottom: 2em;
  padding: 3em;
  text-align: center;
}
.features-row {
  border-top: solid 2px var(--alpha-border);
  display: flex;
}
.features-row:first-child { border-top: 0; }
.features-row > section {
  flex: 1;
  padding: 3em;
  position: relative;
}
.features-row > section:first-child { padding-left: 0; }
.features-row > section:last-child  { padding-right: 0; }
.features-row:first-child > section { padding-top: 0; }
.features-row:last-child > section  { padding-bottom: 0; }

/* Vertical divider between feature sections */
.features-row > section + section::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 2px;
  background: var(--alpha-border);
}

@media (max-width: 736px) {
  .features-row {
    flex-direction: column;
    border-top: 0;
    padding: 0;
  }
  .features-row > section {
    border: 0;
    border-top: solid 1px var(--alpha-border) !important;
    margin: 2em 0 0 0 !important;
    padding: 2em 0 0 0 !important;
    width: 100%;
  }
  .features-row:first-child > section:first-child {
    border-top: 0 !important;
    margin-top: 0 !important;
    padding-top: 0 !important;
  }
  .features-row > section + section::before { display: none; }
}
@media (max-width: 480px) {
  .features-row > section { margin: 3em 0 0 0 !important; padding: 3em 0 0 0 !important; }
}

/* ── Major Icon ───────────────────────────────────────────── */
.icon-major {
  background: #666;
  border-radius: 100%;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 5.5em;
  width: 5.5em;
  margin: 0 0 2em 0;
  font-size: 1em;
}
.icon-major i { font-size: 2.5em; }
.icon-major.accent1 { background: #666; }
.icon-major.accent2 { background: var(--alpha-accent2); }
.icon-major.accent3 { background: var(--alpha-accent3); }
.icon-major.accent4 { background: var(--alpha-accent4); }
.icon-major.accent5 { background: var(--alpha-accent5); }

/* ── Buttons ──────────────────────────────────────────────── */
.btn-alpha,
input[type="submit"],
input[type="reset"],
input[type="button"] {
  appearance: none;
  background-color: #666;
  border-radius: 6px;
  border: 0;
  color: #fff !important;
  cursor: pointer;
  display: inline-block;
  font-weight: 400;
  height: 3em;
  line-height: 3em;
  padding: 0 2em;
  text-align: center;
  text-decoration: none !important;
  white-space: nowrap;
  font-family: inherit;
  font-size: 1em;
  transition: background-color 0.2s ease;
}
.btn-alpha:hover,
input[type="submit"]:hover,
input[type="reset"]:hover,
input[type="button"]:hover { background-color: #737373; color: #fff !important; }

.btn-alpha:active,
input[type="submit"]:active { background-color: #595959; }

.btn-alpha.primary {
  background-color: var(--alpha-primary);
}
.btn-alpha.primary:hover { background-color: var(--alpha-primary-h); }
.btn-alpha.primary:active { background-color: var(--alpha-primary-d); }

.btn-alpha.alt {
  background-color: transparent;
  box-shadow: inset 0 0 0 2px var(--alpha-border);
  color: var(--alpha-text) !important;
}
.btn-alpha.alt:hover { background-color: #f8f8f8; }

.btn-alpha.small { font-size: 0.8em; height: 2.7em; line-height: 2.7em; }
.btn-alpha.large { font-size: 1.25em; height: 2.7em; line-height: 2.7em; }
.btn-alpha.fit, input[type="submit"].fit { width: 100%; }

/* ── Section header ───────────────────────────────────────── */
header.major {
  padding: 1em 0;
  text-align: center;
}
header.major h2 { margin: 0; }
header.major p {
  display: inline-block;
  border-top: solid 2px var(--alpha-border);
  color: var(--alpha-text);
  margin: 1.5em 0 0 0;
  padding: 1.5em 0 0 0;
  font-style: normal;
}
@media (max-width: 840px) { header.major { padding: 0 4em; } }
@media (max-width: 736px) {
  header.major { padding: 1em; }
  header.major h2, header.major p { padding-left: 0.5em; padding-right: 0.5em; }
}
@media (max-width: 480px) { header.major { padding: 0; } }

header p {
  color: var(--alpha-muted);
  margin: 0 0 1.5em 0;
  font-style: italic;
}

/* ── Social icon list ─────────────────────────────────────── */
ul.icons {
  list-style: none;
  padding: 0;
  margin: 0 0 1em 0;
}
ul.icons li {
  display: inline-block;
  padding: 0 1.25em 0 0;
}
ul.icons li:last-child { padding-right: 0; }
ul.icons li a {
  border: 0;
  color: inherit;
  text-decoration: none;
  font-size: 1.75em;
  opacity: 0.35;
  transition: opacity 0.2s ease;
}
ul.icons li a:hover { opacity: 0.75; }

/* ── Actions list ─────────────────────────────────────────── */
ul.actions {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0 0 2em -1em;
  flex-wrap: wrap;
}
ul.actions li {
  padding: 0 0 0 1em;
  vertical-align: middle;
}
ul.actions.special {
  justify-content: center;
  width: 100%;
  margin-left: 0;
}
ul.actions.special li:first-child { padding-left: 0; }

@media (max-width: 480px) {
  ul.actions:not(.fixed) {
    flex-direction: column;
    margin-left: 0;
    width: 100% !important;
  }
  ul.actions:not(.fixed) li {
    padding: 1em 0 0 0;
    text-align: center;
    width: 100%;
  }
  ul.actions:not(.fixed) li:first-child { padding-top: 0; }
  ul.actions:not(.fixed) li > * { width: 100%; }
  .navbar-collapse {background: rgba(0, 0, 0, 0.85);}
  #site-header-internal {height: 70px;}
  .menu-logo {width: 50px;margin-right: 0.5em;}
  #site-header-internal .site-brand {font-size: 1.25em;}
}

/* ── Alt list ─────────────────────────────────────────────── */
ul.alt {
  list-style: none;
  padding: 0;
  margin: 0 0 2em 0;
}
ul.alt li {
  border-top: solid 1px var(--alpha-border);
  padding: 0.5em 0;
}
ul.alt li:first-child { border-top: 0; padding-top: 0; }

/* ── Tables ───────────────────────────────────────────────── */
.table-wrapper { overflow-x: auto; }
table { margin: 0 0 2em 0; width: 100%; }
table tbody tr { border: solid 1px var(--alpha-border); border-left: 0; border-right: 0; }
table tbody tr:nth-child(2n+1) { background-color: #f8f8f8; }
table td { padding: 0.75em; }
table th { color: var(--alpha-heading); font-size: 0.9em; font-weight: 300; padding: 0 0.75em 0.75em; text-align: left; }
table thead { border-bottom: solid 2px var(--alpha-border); }
table tfoot  { border-top:    solid 2px var(--alpha-border); }

/* ── Images ───────────────────────────────────────────────── */
.image {
  border-radius: 6px;
  border: 0;
  display: inline-block;
  position: relative;
}
.image img {
  border-radius: 6px;
  display: block;
}
.image.fit { display: block; margin: 0 0 2em 0; width: 100%; }
.image.fit img { display: block; width: 100%; }
.image.left  { float: left;  padding: 0 1.5em 1em 0; top: 0.25em; }
.image.right { float: right; padding: 0 0 1em 1.5em; top: 0.25em; }

#safeguarding {
  background: var(--alpha-darker);
  color: #f9e6df;
  padding: 3.5em 0 4em 0;
  text-align: center;
}
/* ── CTA section ──────────────────────────────────────────── */
#cta {
  background: var(--alpha-primary);
  color: #f9e6df;
  padding: 3.5em 0 4em 0;
  text-align: center;
}
#cta h2, #cta h3, #cta h4, #cta h5, #cta h6 { color: inherit; }
#cta .cta-form {
  margin: 0 auto;
  max-width: 100%;
  width: 25em;
}
#cta input[type="email"] {
  background: rgba(255,255,255,0.15);
  border: 0;
  border-radius: 6px;
  color: #fff;
  height: 3em;
  padding: 0 1em;
  width: 100%;
  outline: 0;
}
#cta input[type="email"]::placeholder { color: rgba(255,255,255,0.75); }
#cta input[type="email"]:focus { box-shadow: inset 0 0 0 2px #fff; }
#cta input[type="submit"] {
  background: #fff;
  color: var(--alpha-primary) !important;
  box-shadow: none;
  width: 100%;
  border-radius: 6px;
}
#cta input[type="submit"]:hover { background: rgba(255,255,255,0.9); }
@media (max-width: 480px) { #cta { padding: 2.5em 1em 3em 1em; } }

/* ── Footer ───────────────────────────────────────────────── */
#footer {
  background: var(--alpha-light-bg);
  padding: 4em 0 6em 0;
  text-align: center;
}
#footer .copyright {
  color: var(--alpha-muted);
  font-size: 0.9em;
  line-height: 1em;
  margin: 2em 0 0 0;
  padding: 0;
  list-style: none;
}
#footer .copyright li {
  border-left: solid 1px #ddd;
  display: inline-block;
  list-style: none;
  margin-left: 1em;
  padding-left: 1em;
}
#footer .copyright li:first-child { border-left: 0; margin-left: 0; padding-left: 0; }
#footer .copyright a { color: inherit; border: 0; }
@media (max-width: 736px) {
  #footer { padding: 4em 0; }
  #footer .copyright li { border-left: 0; display: block; line-height: 2em; margin-left: 0; padding-left: 0; }
}

/* ── Preload fade ─────────────────────────────────────────── */
body.is-preload * { animation: none !important; transition: none !important; }

/* ── Forms general ────────────────────────────────────────── */
input[type="text"],
input[type="password"],
input[type="email"],
select,
textarea {
  appearance: none;
  background-color: #f8f8f8;
  border-radius: 6px;
  border: solid 1px var(--alpha-border);
  color: inherit;
  display: block;
  outline: 0;
  padding: 0 1em;
  text-decoration: none;
  width: 100%;
  font-family: inherit;
}
input[type="text"]:focus,
input[type="password"]:focus,
input[type="email"]:focus,
select:focus,
textarea:focus {
  border-color: var(--alpha-primary);
  box-shadow: 0 0 0 2px var(--alpha-primary);
}
input[type="text"],
input[type="password"],
input[type="email"],
select { height: 3em; }
textarea { padding: 0.75em 1em; }
label {
  color: var(--alpha-heading);
  display: block;
  font-size: 0.9em;
  font-weight: 300;
  margin: 0 0 1em 0;
}
form { margin: 0 0 2em 0; }

/* ── Misc utilities ───────────────────────────────────────── */
.text-alpha-muted { color: var(--alpha-muted); }
section.special, article.special { text-align: center; }
