/* GLOBAL */
@import "normalize.css";
@import "reset.css";

body {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  flex-direction: column;
  background: linear-gradient(225deg, #fbfbfb, #000000);
}
.navigation {
  background: #ffffff;
  box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.06);
  position: relative;
  height: 60px;
  display: flex;
  align-items: center;
  position: fixed;
  top: 0;
  width: 100vw;
  box-sizing: border-box;
  padding: 0 4vw;
}
.logo {
  width: 140px;
  height: 36px;
  background: url(../img/logo.svg) no-repeat 50%;
  background-size: contain;
  display: inline-block;
}
p {
  margin-top: 30px;
  color: #ffffff;
  text-align: center;
  line-height: 1.5;
}
#captcha {
  width: 90%;
  max-width: 558px;
}
@media (max-width: 1080px) {
  .navigation {
    box-shadow: 0 0 0 1px rgba(100, 100, 100, 0.1);
    max-height: 60px;
    height: 14vw;
  }
  p {
    padding: 0 5%;
    font-size: 14px;
  }
}
