*
{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Rubik', sans-serif;
}

body
{
  background-color: #bdc3c7;
  color: white;
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero
{
  position: absolute;
  top: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1000;
  background-image: url('../images/backimage.jpg');
  background-size: cover;
}

.heroimage
{
  position: absolute;
  top: 0;
  width: 100vw;
  height: 100vh;
  z-index: -500;
  background-color: rgba(0, 0, 0, 0.5);
  animation: image 1.5s;
}

@keyframes image
{
  0%
  {
    background-color: rgba(0, 0, 0, 1);
  }
  100%
  {
    background-color: rgba(0, 0, 0, 0.5);
  }
}

.logo
{
  padding: 10px;
  position: absolute;
  top: -55px;
  left: 0px;
  background-color: #7f8c8d;
  font-size: 30px;
  text-align: center;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  font-weight: bold;
  animation: loadLogo 1.3s;
}

@keyframes loadLogo
{
  0%
  {
    transform: rotate3d(1, 0, 0, 180deg);
  }
  100%
  {
    transform: rotate3d(1, 0, 0, 0deg);
  }
}

.form1 span
{
  color: #d35400;
}

a,
a:visited,
a:focus
{
  text-decoration: none;
  color: white;
  padding: 10px;
}

.form1
{
  position: relative;
  width: 600px;
  height: 200px;
  background: rgb(230,126,34);
  background: linear-gradient(90deg, rgba(230,126,34,1) 0%, rgba(211,84,0,1) 100%);
  box-shadow: 1px 1px 26px black;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  border-top-right-radius: 10px;
  animation: loadForm .8s;
}

@keyframes loadForm
{
  0%
  {
    transform: rotate3d(1, 0, 0, 80deg);
    opacity: 0;
  }
  100%
  {
    transform: rotate3d(1, 0, 0, 0deg);
    opacity: 1;
  }
}

input[type=password]
{
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-top: 40px;
  width: 400px;
  height: 60px;
  font-size: 50px;
  text-align: center;
  border: none;
  outline: none;
}

input[type=submit]
{
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 400px;
  height: 60px;
  font-size: 26px;
  text-align: center;
  border: none;
  outline: none;
  background-color: #232323;
  color: white;
  text-transform: uppercase;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  transition: 0.3s;
}

input[type=submit]:hover
{
  background-color: #000;
  cursor: pointer;
}

footer
{
  position: absolute;
  bottom: 0px;
  display: block;
  text-align: center;
  background-color: black;
  width: 100%;
  font-size: 20px;
  padding: 10px;
  color: #dedede;
}

h1
{
  position: absolute;
  top: 0px;
  display: block;
  text-align: center;
  background-color: black;
  width: 100%;
  font-size: 20px;
  padding: 10px;
  font-weight: normal;
  color: #dedede;
}


@media (max-device-width: 768px)
{
  .form1
  {
    height: 50vh;
  }
}
