﻿:root {
  --page-bg: #ffffff;
  --shell-bg: #c8c8c8;
  --highlight: #ffffff;
  --highlight-soft: #e9e9e9;
  --shadow: #8b8b8b;
  --shadow-deep: #565656;
  --ink: #000000;
  --title-fill: #aad0fb;
  --hero-blue: #0d11b8;
  --icon-blue: #2c6bbf;
  --icon-blue-dark: #1f4e90;
  --icon-blue-light: #7fb3ff;
  --disabled-text: #9a9a9a;
  --window-width: 640px;
  --window-height: 799px;
  --app-scale: 1;
  --ui-font: Tahoma, "MS Sans Serif", "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  background: var(--page-bg);
}

body {
  font-family: var(--ui-font);
  color: var(--ink);
}

button,
input {
  appearance: none;
  border: 0;
  margin: 0;
  padding: 0;
  background: transparent;
  box-shadow: none;
  border-radius: 0;
  outline: none;
  font: inherit;
}

.page-shell {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  overflow: hidden;
}

.stage {
  width: calc(var(--window-width) * var(--app-scale));
  height: calc(var(--window-height) * var(--app-scale));
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.aim-window {
  position: relative;
  width: var(--window-width);
  height: var(--window-height);
  background: var(--shell-bg);
  transform: scale(var(--app-scale));
  transform-origin: top center;
  border: 2px solid var(--shadow-deep);
  box-shadow:
    inset 2px 2px 0 var(--highlight),
    inset 4px 4px 0 var(--highlight-soft),
    inset -2px -2px 0 var(--shadow),
    inset -4px -4px 0 #b1b1b1;
  overflow: hidden;
}

.titlebar {
  position: absolute;
  top: 12px;
  left: 18px;
  right: 18px;
  height: 59px;
  display: grid;
  grid-template-columns: 47px 1fr 47px;
  align-items: stretch;
}

.titlebar__label,
.title-button {
  background: var(--title-fill);
  border-top: 3px solid var(--highlight);
  border-left: 3px solid var(--highlight);
  border-bottom: 3px solid var(--shadow);
  border-right: 3px solid var(--shadow-deep);
}

.titlebar__label {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: -1px;
  margin-right: -1px;
  font-size: 33px;
  font-weight: 700;
  letter-spacing: -0.4px;
}

.title-button {
  display: flex;
  align-items: center;
  justify-content: center;
}

.title-button svg {
  fill: var(--ink);
}

.title-button--collapse svg {
  width: 25px;
  height: 15px;
}

.title-button--dropdown svg {
  width: 24px;
  height: 18px;
}

.hero-frame {
  position: absolute;
  top: 93px;
  left: 35px;
  width: 569px;
  height: 406px;
  padding: 10px;
  background: var(--shell-bg);
  border-top: 3px solid var(--highlight);
  border-left: 3px solid var(--highlight);
  border-bottom: 3px solid var(--shadow);
  border-right: 3px solid var(--shadow);
}

.hero-panel {
  width: 100%;
  height: 100%;
  background: var(--hero-blue);
  border: 1px solid #707070;
}

.hero-art {
  width: 100%;
  height: 100%;
  display: block;
}

.hero-aol {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 900;
  font-size: 102px;
  letter-spacing: -2px;
}

.hero-instant,
.hero-messenger {
  font-family: "Times New Roman", Georgia, serif;
  font-size: 86px;
  font-style: italic;
  font-weight: 700;
  letter-spacing: -2px;
}

.hero-tm {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 24px;
  font-weight: 700;
}

.divider {
  position: absolute;
  top: 517px;
  left: 29px;
  width: 575px;
  height: 7px;
  background:
    linear-gradient(to bottom,
      var(--shadow) 0,
      var(--shadow) 2px,
      var(--highlight) 2px,
      var(--highlight) 4px,
      transparent 4px,
      transparent 100%);
}

.credential-grid {
  position: absolute;
  top: 546px;
  left: 32px;
  width: 576px;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.field-row {
  display: grid;
  grid-template-columns: 225px 1fr;
  align-items: center;
}

.field-label {
  font-size: 28px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.7px;
}

.field-control {
  height: 48px;
  display: flex;
}

.field-control--dropdown .input-face {
  width: calc(100% - 36px);
}

.input-face {
  flex: 1;
  background: #fff;
  border-top: 3px solid var(--shadow);
  border-left: 3px solid var(--shadow);
  border-bottom: 3px solid var(--highlight);
  border-right: 3px solid var(--highlight);
  padding: 5px 12px 4px;
  font-size: 26px;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.7px;
  display: flex;
  align-items: center;
}

.input-face--filled {
  color: #1d1d1d;
}

.inline-button {
  width: 36px;
  margin-left: 8px;
  background: var(--shell-bg);
  border-top: 3px solid var(--highlight);
  border-left: 3px solid var(--highlight);
  border-bottom: 3px solid var(--shadow-deep);
  border-right: 3px solid var(--shadow-deep);
  display: flex;
  align-items: center;
  justify-content: center;
}

.inline-button svg {
  width: 20px;
  height: 26px;
  fill: var(--ink);
}

.options-row {
  position: absolute;
  top: 653px;
  left: 32px;
  width: 576px;
  display: flex;
  justify-content: space-between;
}

.checkbox-wrap {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 245px;
}

.checkbox-box {
  width: 31px;
  height: 31px;
  background: #fff;
  border-top: 3px solid var(--shadow);
  border-left: 3px solid var(--shadow);
  border-bottom: 3px solid var(--highlight);
  border-right: 3px solid var(--highlight);
}

.checkbox-text {
  font-size: 25px;
  line-height: 1;
  letter-spacing: -0.8px;
}

.checkbox-wrap--disabled .checkbox-text {
  color: var(--disabled-text);
}

.action-row {
  position: absolute;
  top: 690px;
  left: 53px;
  width: 533px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.action-row__left {
  display: flex;
  gap: 35px;
}

.action-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.icon-button {
  width: 58px;
  height: 58px;
  background: var(--shell-bg);
  border-top: 3px solid var(--highlight);
  border-left: 3px solid var(--highlight);
  border-bottom: 3px solid var(--shadow-deep);
  border-right: 3px solid var(--shadow-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
}

.icon-button svg {
  width: 100%;
  height: 100%;
}

.icon-help rect,
.icon-setup rect,
.icon-signon rect {
  fill: var(--icon-blue);
  stroke: var(--icon-blue-dark);
  stroke-width: 2;
}

.icon-help path,
.icon-help rect:nth-of-type(2) {
  fill: #d8edff;
}

.icon-setup path {
  fill: #d8edff;
}

.icon-detail {
  stroke: #d8edff;
  stroke-width: 3.5;
  fill: none;
  stroke-linecap: round;
}

.icon-signon__line {
  stroke: var(--icon-blue-light);
  stroke-width: 3.5;
  stroke-linecap: round;
  fill: none;
}

.icon-signon circle,
.icon-signon path:not(.icon-signon__line):not(.icon-signon__runner) {
  fill: none;
  stroke: #cfe7ff;
  stroke-width: 4.3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon-signon__runner {
  fill: none;
  stroke: #cfe7ff;
  stroke-width: 4.3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.action-label {
  margin-top: 6px;
  font-size: 18px;
  line-height: 1;
  letter-spacing: -0.8px;
}

.signon-zone {
  position: relative;
  width: 158px;
  height: 82px;
}

.cursor-art {
  position: absolute;
  left: 3px;
  top: 19px;
  width: 48px;
  height: 64px;
}

.cursor-art svg {
  width: 100%;
  height: 100%;
}

.cursor-art path {
  fill: #fff;
  stroke: #000;
  stroke-width: 4;
  stroke-linejoin: round;
}

.action-stack--signon {
  position: absolute;
  right: 0;
  top: 0;
}

.signon-focus {
  padding: 3px;
  border: 2px solid var(--ink);
  box-shadow: inset 0 0 0 2px #2e2e2e;
  background: transparent;
}

.icon-button--signon {
  width: 58px;
  height: 58px;
}

.action-label--signon {
  margin-top: 6px;
  font-size: 22px;
}

.version-label {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 8px;
  text-align: center;
  font-size: 25px;
  letter-spacing: -0.8px;
}
