:root {
  --font-main: "Circular Pro", Arial, sans-serif;
  --font-heading: "Degular Display", "Circular Pro", sans-serif;

  /* text */
  --text-primary: #07206d;
  --text-link: #0063d4;
  --text-link-hover: #4991e4;
  --text-success: #007d77;
  --text-caution: #915a00;
  --text-critical: #de2c68;

  /* borders */
  --border-success: #5bd7d4;
  --border-caution: #ffa30b;
  --border-critical: #de2c68;
  --border-active: #1c75dd;

  /* icons */
  --icon-success: #007d77;
  --icon-caution: #ffa30b;
  --icon-critical: #5bd7d4;

  /* backgrounds */
  --bg-active: #1c75dd29;
  --bg-transparent-medium: #07206d14;

  /* spacing */
  --spacing-graze: 5px;
  --spacing-nudge: 10px;
  --spacing-push: 15px;
  --spacing-space: 20px;
  --spacing-shove: 30px;
  --spacing-gap: 50px;
  --spacing-section: 70px;
}

@font-face {
  font-family: "Circular Pro";
  src: url("https://assets.globalconnect.net/fonts/circular-pro/CircularPro-Book.woff")
      format("woff"),
    url("https://assets.globalconnect.net/fonts/circular-pro/CircularPro-Book.otf")
      format("opentype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "Circular Pro";
  src: url("https://assets.globalconnect.net/fonts/circular-pro/CircularPro-Bold.woff")
      format("woff"),
    url("https://assets.globalconnect.net/fonts/circular-pro/CircularPro-Bold.otf")
      format("opentype");
  font-weight: bold;
  font-style: normal;
}

@font-face {
  font-family: "Circular Pro";
  src: url("https://assets.globalconnect.net/fonts/circular-pro/CircularPro-BookItalic.woff")
      format("woff"),
    url("https://assets.globalconnect.net/fonts/circular-pro/CircularPro-BookItalic.otf")
      format("opentype");
  font-weight: normal;
  font-style: italic;
}

@font-face {
  font-family: "Degular Display";
  src: url("https://assets.globalconnect.net/fonts/degular-display/Degular_Display-Medium.woff")
      format("woff"),
    url("https://assets.globalconnect.net/fonts/degular-display/DegularDisplay-Medium.otf")
      format("truetype");
  font-weight: normal;
  font-style: normal;
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--font-main);
  color: var(--text-primary);
  background: white;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.container {
  max-width: 720px;
  padding: var(--spacing-shove);
}

.logo {
  display: block;
  margin: 0 auto var(--spacing-shove);
  max-width: 280px;
}

.status-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-nudge);
  padding: var(--spacing-shove);
  border: 3px solid;
  border-radius: 15px;
  margin-bottom: var(--spacing-shove);

  @media screen and (max-width: 768px) {
    padding: var(--spacing-space);
  }
}

.content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.heading-text {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 500;
  line-height: 38.4px;
  margin: 0;
}

.subheading-text {
  font-family: var(--font-main);
  font-size: 20px;
  font-weight: 700;
  line-height: 26px;
  margin: 0;
  padding-bottom: var(--spacing-graze);
}

.body-text {
  font-family: var(--font-main);
  font-size: 16px;
  font-weight: 450;
  line-height: 24px;
  margin: 0;
  padding-bottom: var(--spacing-space);
}

.link {
  font-family: var(--font-main);
  font-size: 16px;
  font-weight: 450;
  line-height: 24px;
  color: var(--text-link);
  text-decoration-line: underline;
  text-underline-position: from-font;
  padding-bottom: var(--spacing-push);
}

.link:hover {
  color: var(--text-link-hover);
}

.language-switcher {
  position: absolute;
  top: var(--spacing-shove);
  right: var(--spacing-gap);
  display: flex;
  gap: var(--spacing-push);
}

.language-button {
  display: flex;
  align-items: center;
  gap: var(--spacing-graze);
  padding: 6px 12px;
  border-radius: 12px;
  text-decoration: none;
  font-family: var(--font-main);
  font-size: 16px;
  font-weight: 500;
  color: var(--text-primary);
  background-color: var(--bg-transparent-medium);
  border: 2px solid transparent;
  transition: all 0.2s ease-in-out;
}

.language-button:hover {
  background-color:  var(--bg-active);
}

.language-button.selected {
  background-color: var(--bg-active);
  border-color: var(--border-active); 
}