@import url('https://fonts.googleapis.com/css?family=Roboto:100&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:300&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto&display=swap');
body {
  margin: 0;
  padding: 0;
  background-color: black;
  background: url("Background.png") no-repeat center center fixed;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
	user-select: None;
	-ms-user-select: None;
	-moz-user-select: None;
	-webkit-user-select: None;
}

.content {
  height: 100%;
  min-height: 100vh;
  max-height: 100vh;
  background-color: rgba(0, 0, 0, 0.15);
}










.header {
  width: 100%;
}
.header svg {
  fill: #fff;
  height: 40px;
  margin: 20px;
}













.center {
  margin: 0;
  position: absolute;
  top: 50%;
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 100%;
}
.center .box {
  position: relative;
  width: 550px;
  max-height: 90vh;
  margin: 0 auto;
  overflow: auto;
  border-top: 10px solid #2C3C41;
  background-color: #fff;
}
.center .box p {
	font-family: 'Roboto', sans-serif;
	font-weight: bold;
  font-size: 25px;
  color: #000;
  margin: 20px 20px 20px 20px;
}
.center .box .error {
	font-family: 'Roboto', sans-serif;
	font-weight: bold;
  font-weight: 400;
  font-size: 18px;
  color: #DD4B39;
  margin: -17px 20px 10px 30px;
}
.center .box fieldset {
	border: none;
  margin: 0;
  display: block;
  padding: 0;
}
.center .box fieldset label {
  display: block;
	font-family: 'Roboto', sans-serif;
	font-weight: 300;
  font-size: 22px;
  border: 2px solid #000;
  padding: 12px 20px;
  margin: 10px 20px 20px 20px;
  border-radius: 10px;
}
.center .box fieldset input:checked + label{
  background-color: #2C3C41;
  color: #fff;
}
.center .box fieldset label:hover {
  background-color: #ECF0F6;
  cursor: pointer;
  transition: 0.3s;
}
.center .box fieldset input[type=radio] {
  display: none;
  visibility: hidden;
  width: 0;
  height: 0;
}
.center .box fieldset input[type=text] {
  display: block;
	font-family: 'Roboto', sans-serif;
	font-weight: 400;
  font-size: 22px;
  border: 2px solid #000;
  padding: 12px 20px;
  width: 510px;
  max-width: calc(100%-40px);
  margin: 20px 20px 20px 20px;
  border-radius: 10px;
}
.center .box fieldset input:focus[type=text] {
  border: 2px solid #3C8DBC;
  outline: none;
  transition: 0.3s;
}
.center .box input[type=submit] {
  margin: 10px 20px 20px 20px;
  padding: 10px;
  background-color: #2C3C41;
  border: 0 none;
  color: #fff;
  cursor: pointer;
  -webkit-border-radius: 5px;
  border-radius: 10px;
	font-family: 'Roboto', sans-serif;
	font-weight: 700;
  font-size: 26px;
}
.center .box input:hover[type=submit] {
  background-color: #3C8DBC;
  transition: 0.3s;
}

.footer {
    position: absolute;
    bottom: 0;
    width: 100%;
}
.footer p {
	font-family: 'Roboto', sans-serif;
	font-weight: 100;
  letter-spacing: 1px;
  font-size: 29px;
  float: right;
  color: rgba(255, 255, 255, 1);
  margin:20px;
}

@media screen and (max-width: 550px) {
  body {
  }
  .content {
    background-color: rgba(0, 0, 0, 0.15);
  }
  .header svg {
    position: absolute;
    left: 0;
    right: 0;
    fill: #fff;
    align-items: center;
    margin: 20px auto;
  }

  .center .box {
    width: 100%;
    text-align: center;
    border: none;
    background-color: rgba(0, 0, 0, 0);
  }
  .center .box p {
  	font-family: 'Roboto', sans-serif;
  	font-weight: bold;
    font-size: 20px;
    color: #fff;
  }
  .center .box fieldset label {
    font-size: 18px;
    color: #fff;
    border: 2px solid #fff;
    font-weight: 400;
  }
  .center .box fieldset input:checked + label{
    background-color: #fff;
    color: #2C3C41;
  }
  ::-webkit-input-placeholder {
    color: #fff;
  }
  .center .box fieldset input[type=text] {
    width: calc(100% - 40px);
    background: rgba(0, 0, 0, 0);
    border: 2px solid #fff;
    color: #fff;
  }
  .center .box input[type=submit] {
    width: calc(100% - 40px);
    font-size: 18px;
    margin: 0 20px;
    background: #fff;
    color: #2C3C41;
  }
  .footer p {
    font-size: 24px;
  }
}


@media screen and (max-width: 275px) {
  html {
    background-color: #000;
  }
  body {
    display: none;
  }
}
