@import url('https://fonts.googleapis.com/css2?family=Varela+Round&display=swap');
*{
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
body{
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Varela Round', sans-serif;
  height: 100vh;
  width: 100vw;
  background-image: url(https://images8.alphacoders.com/505/505303.jpg);
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  font-family: 'Bruno Ace SC', cursive;
  font-family: 'Varela Round', sans-serif;
}
.logo{
  color: #fff;
  font-size: 2em;
  font-family: fantasy;
  left: 50%;
}
  .logo a{
  text-decoration: none;
  color: #fff;
  left: 50%;
  position: absolute;
}
span{
  color: tomato;
}
  nav{
  background-color: rgb(158 158 158);
  display: flex;
  position: fixed;
  align-items: initial;
  right: 0;
  top: 0;
  left: 0;
  justify-content: space-between;
  padding-left: 15px;
  padding-right: 15px;
  z-index: 100;
  padding-top: 2px;
  box-shadow: 2px 2px 2px #fff;
  height: 40px;
}
.container{
  background: linear-gradient(133deg, #FF9800, #ffeb3be6);
  min-width: 500px;
  min-height: 45vh;
  border-radius: 5px;
  box-shadow: 0 0 5px #000;
  position: relative;
  display: block;
}
h1{
  justify-content: center;
  display: flex;
  text-shadow: 0px 0px 2px white;
}
.info-sec{
  display: inline-grid;
  justify-content: center;
  align-items: center;
  width: -webkit-fill-available;
  padding: 20px;
}
label{
  text-shadow: 0 1px 2px #fff;
}
input{
  height: 20px;
  width: auto;
  margin: 5px 0 5px 5px;
  border: none;
  border-radius: 3px;
  font-family: 'Varela Round';
}
.sec-signin{
  right: 25%;
  position: absolute;
}
.registerbtn{
  border: none;
  padding: 5px;
  border-radius: 15px;
  background: #FF9800;
  font-size: 1.1em;
  color: white;
  text-shadow: 0px 0 5px BLACK;
  cursor: pointer;
  transition: 2s;
}
.registerbtn:hover{
  border: 1px solid white;
  color: black;
  box-shadow: 0 0 2px #000;
  text-shadow: 0 0 5px white;
}
footer{
  background-color: #9E9E9E;
  font-weight: bold;
  border-top: solid 1px #fff;
  width: 100vw;
  height: 2.5em;
  display: flex;
  position: fixed;
  bottom: 0;
  color: #fff;
  justify-content: center;
  align-items: center;
}
::-webkit-scrollbar {
  width: 7px;
  height: 8px;
  background-color: #aaa;
}
::-webkit-scrollbar-thumb{
  background-color: #9e9e9e;
}
::-webkit-scrollbar-track{
  background-color: black;
}
::-webkit-scrollbar-button{
  background-color: #9e9e9e;
}
@media only screen and (max-width: 1100px) {
  body{
    width: 100vw;
  }
  nav{
    align-content: stretch;
    flex-wrap: wrap;
    flex-direction: column-reverse;
    align-items: center;
    position: relative;
  }
}

