/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}
  
* {
  margin: 0;
  padding: 0;
}
  
body {
  background-color: #313131;
}
  
/* Hide Scrollbar */  
::-webkit-scrollbar {
  width: 8px;
  height: 0;
}
::-webkit-scrollbar-track{
  background: black;
}
::-webkit-scrollbar-thumb{
  background: rgba(255, 255, 255, 0.582);
  border-radius: 15px;
}
  ::-webkit-scrollbar-thumb:hover{
   background: #57be08;
}
  
/* Menu */  
header {
  width: 100%;
  background-color: black;
  font-family: "Roboto", sans-serif;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 1;
  border-bottom: 1px solid #fff;
}
#logo1 {
  width: 90px;
}
nav {
  max-width: 80%;
  height: 80px;
  margin: auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
ul {
  display: flex;
  flex-direction: row;
}
li {
  list-style: none;
  padding: 10px;
}
a{  
  color: #fff;
  font-weight: bold;
  text-decoration: none;
}  
a:hover{
  color: #75b942;
  transition-duration: 0.4s;
}  
.btnLogin {
  color: #fff;
  width: 90px;
  background: transparent;
  border: 1px solid #75b942;
  border-radius: 5px;
  padding: 8px;
}
.btnLogin:hover {
  background-color: #75b94295;
  transition-duration: 0.4s;
}  
.btnLoginLink{
  color: #fff;
}  
.btnLoginLink:hover{
  color: #fff;
} 
  
/* Section Register */  
#registerSection {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
#registerContainer {
  width: 70%;
  height: 50%;
  background-color: rgba(0, 0, 0, 0.31);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 10px 10px 0 0;
  margin-top: 40px;
  padding: 55px;
}  
.input {
  width: 50%;
  height: 50px;
  background-color: rgba(255, 255, 255, 0.144);
  font-size: 22px;
  font-family: "Blinker";
  color: #fff;
  margin-bottom: 20px;
  padding-left: 15px;
  padding-right: 15px;
  border: none;
  border-radius: 8px;
  caret-color: #75b942;
  text-align: center;
}  
#btnAccess {
  width: 50%;
  color: #fff;
  background: transparent;
  border: 1px solid #75b942;
  border-radius: 5px;
  padding-top: 10px;
  padding-bottom: 10px;
}
#btnAccess:hover {
  background-color: #75b94295;
  transition-duration: 0.4s;
}  
#registeredContainer{  
  width: 70%;
  height: 8%;
  color: #fff;
  font-family: "Blinker";
  background-color: rgba(0, 0, 0, 0.31);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 0 0 10px 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.144);
  margin-bottom: 40px;
  padding: 55px;
}  
#registeredClik{
  font-size: 16px;
  font-weight: bold;
  margin-top: 10px;
}
  
  /* Whatsapp Button Pulse */  
#whatsappPulse{
  width: 45px;
  height: 45px;
  color: #75b942;
  background-color: #29292933;
  font-size: 35px;
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  bottom: 100px;
  left: 40px;
  border-radius: 50px;
}
#whatsappPulse:after, #whatsappPulse:before{
  content: '';
  position: absolute;
  left: -10px;
  right: -10px;
  top: -10px;
  bottom: -10px;
  border-radius: 50%;
  border: 1px solid;
  animation: whatsappPulse 1.5s linear infinite;
}
#whatsappPulse:after{
  animation-delay: .4s;
}
  
/* Section Copyright */  
footer {
  color: #fff;
  font-family: "Roboto", sans-serif;
  background-color: black;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

  /* Responsive */
@media only screen and (max-width: 699px) {    
  .input{
    width: 85%;
  }
  #btnAccess {
    width: 85%;      
  }
  footer{
    font-size: 14px;
  }
}

@media only screen and (max-width: 767px) and (min-width: 700px) {
  .input{
    width: 80%;
  }
  #btnAccess {
    width: 80%;      
  }
}
  
  
  /* Animations
  
  /* Button Whatsapp */  
@keyframes whatsappPulse {
  0% {
    transform: scale(.5);
    opacity: 0;
  }
  50% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1.4);
    opacity: 0;
  }
}
  
  