@import url('https://fonts.googleapis.com/css?family=Roboto:300,400');

@media (max-width: 720px) {
  .wrapper {
    width: 100%;
    margin: 10px;
    padding: 20px;
  }
}
@media (max-width: 1280px) {
  .page {
    background-image: url(../img/mountains-bg-1280.jpg);
  }
}

html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  width: 100%;
}

body {
  font-family: Roboto, Arial, sans-serif;
  font-weight: 300;
  color: #ffffff;

  font-size: 16px;
  line-height: 22px;
}

.page {
  margin:0;
  padding:0;
  height: 100%;
  width: 100%;
  display: flex;

  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background: #504a55 url(../img/mountains-bg-2560.jpg) bottom;
  background-size: cover;

  justify-content: center;
  align-items: center;
  text-align: center;
}

.wrapper {
  width: 640px;
  background-color: rgba(5, 27, 64, 0.4);
  border-radius: 5pt;
  padding: 40px;
}

h1.logo {
  text-indent: -9999px;
  white-space: nowrap;
  background: url(../img/ConfigSeederWhite.svg) no-repeat center;
  background-size: contain;
  width: 100%;
  margin: 0 0 40px 0;
  height: 46pt;
}

h2 {
  margin: 40px 0 20px 0;
  font-weight: 400;
  font-size: 18pt;
}

a, a:visited, a:active {
  text-decoration: none;
  color: rgb(213, 163, 16);
  font-weight: 400;
}
a svg {
  fill: #fff;
  width: 16px;
  height: 16px;
  margin-right: 4px;
}


.buttons-wrapper {
  display: flex;
  justify-content: center;
}

.btn {
  border: none;
  padding: 0 18px;
  line-height: 36px;
  height: 36px;
  color: #fff;
  cursor: pointer;
  transition: .2s;
  outline: none;
  border-radius: 2px;
  box-shadow: 0 -10px 30px -10px rgba(255, 255, 255, .2) inset;
  min-width: 120px;
  background: linear-gradient(135deg, rgba(213, 163, 16, 0.80) 0%, rgba(189, 141, 16, 0.80) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  margin: 0 10px;
}
.btn:hover {
  box-shadow: 0 0 0 50px rgba(255, 255, 255, .1) inset;
}
a.btn {
  color: #ffffff;
}

.copyright {
  position: absolute;
  bottom: 20px;
  width: 100%;
  text-align: center;
}
