/* reset */
*, *::before, *::after {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
}

body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

input, button, textarea, select {
  font: inherit;
}

p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

html {
  font-size: 100%;
  background-color: #000914;
}

body {
  background: url(../img/back.jpg) center center no-repeat;
  background-size: cover;
  font-family: MarkPro, sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  color: #fff;
  min-height: 100dvh;
}

.site {
  width: 50%;
  min-height: 100dvh;
  background-color: rgba(0, 9, 20, 0.88);
  display: grid;
  grid-template-rows: 1fr auto;
  padding: 20px;
  box-shadow: 32px 0px 64px 0px #00000052;
}

.wrap {
  display: grid;
  align-items: center;
  justify-content: center;
}

.container {
  max-width: 480px;
}

.logo {
  position: relative;
}

@keyframes rotate{
  to{ transform: rotate(-360deg); }
}

.logo img {
  position: absolute;
  left: 0;
  top: 0;
  margin-left: -120px;
  margin-top: -120px;
  animation: rotate 1.5s linear infinite;
  transform-origin : center center;
}

.content {
  max-width: 320px;
  padding: 32px 0;
}

.content ul {
  list-style-type: none;
  font-size: 0.75rem;
  display: grid;
  grid-gap: 14px;
}

.content ul li {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-gap: 10px;
}

.content ul li:hover svg path {
  fill: #00c1de;
}

.content ul li a {
  color: #fff;
  text-decoration: none;
}

.content ul li a:hover {
  text-decoration: underline;
}

.content p {
  padding-bottom: 24px;
}

.content form {
  padding-bottom: 32px;
}

.copy {
  font-size: 0.75rem;
  opacity: 0.4;
  padding: 10px 0;
  text-align: center;
}

.form-line {
  padding-bottom: 15px;
}

.form-submit {
  text-align: right;
}

.content input,
.content textarea {
  width: 100%;
  line-height: 1.5;
  padding: 7px 16px;
  border: 1px solid #fff;
  background-color: transparent;
  color: #fff;
  border-radius: 0;
  outline-offset: 2px;
}

.content .error input,
.content .error textarea {
  border-color: #8c0000;
}

.content textarea {
  min-height: 120px;
}

.content button {
  border-radius: 0;
  border: 0;
  background-color: #1226a9;
  color: #fff;
  padding: 8px 16px;
  line-height: 1.5;
  cursor: pointer;
  outline-offset: 2px;
}

@media screen and (max-width: 1040px) {
  .site {
    width: calc(100% - 200px);
  }
}

@media screen and (max-width: 730px) {
  .site {
    width: calc(100% - 32px);
  }
}