* {
  box-sizing: border-box;
}

:root {
  --header-bg: #10375c;
}

html {
  font-size: 62.5%;
}

body {
  font-size: 1.6rem;
  font-family: "Sora", sans-serif;
}

/* Common */

.btn {
  --height: 60px;

  display: inline-block;
  min-width: 205px;
  height: var(--height);
  text-align: center;
  line-height: var(--height);
  font-size: 1.6rem;
  font-weight: 400;
  padding: 0 20px;
  color: #fff;
  border: 1px solid #2e80ce;
  border-radius: 999px;
  background-color: #2e80ce;
}

.btn:hover {
  opacity: 0.8;
  cursor: pointer;
}

a {
  text-decoration: none;
}

.container {
  width: 1170px;
  max-width: calc(100% - 48px);
  margin: 0 auto;
}

/* Header */
.header {
  min-height: 100vh;
  background: var(--header-bg);
  padding-top: 30px;
}

.logo {
  position: relative;
  display: inline-flex;
  font-size: 1rem;
}

.logo__circle::before,
.logo__circle::after {
  content: "";
  display: inline-block;
  border-radius: 50%;
}

.logo__circle::before {
  width: 3em;
  height: 3em;
  background: #2e80ce;
}

.logo__circle::after {
  position: absolute;
  top: 1.1em;
  left: 1.1em;
  width: 1.6em;
  height: 1.6em;
  background-color: #ffffff;
}

.logo__text {
  line-height: 1.6em;
  text-align: right;
  margin-left: 0.6em;
  color: #fff;
}

.logo__brand {
  display: block;
  font-size: 1.8em;
  font-weight: 400;
}

.logo__brand--small {
  font-size: 1.2em;
  font-weight: 300;
}

/* Header top */
.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar__list {
  display: flex;
}

.action__login,
.navbar__link {
  padding: 4px 21px;
  color: #c9d2da;
  font-size: 1.6rem;
  font-weight: 300;
}

.navbar__link:hover,
.navbar__item--active {
  color: #fff;
  text-shadow: 1px 0 0 currentColor;
}

.navbar__item--active::before {
  position: relative;
  left: -8px;
  top: -2px;
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fff;
}

/* Action */
.action__signup {
  min-width: 144px;
}
