body, html {
  width: 100%;
  height: 100%;
  font-size: 16px;
  margin: 0;
  overflow: hidden;
  background-color: #000000;
  cursor: default;
  overflow: hidden;
}
  
*,
*:before,
*:after {
  box-sizing: border-box;
  margin: 0;
}
  
*{
  font-family: 'Prompt', sans-serif;
  font-weight: 400;
  -webkit-user-select: none;  /* Chrome 49+ */
  -moz-user-select: none;     /* Firefox 43+ */
  -ms-user-select: none;      /* No support yet */
  user-select: none;
}
  
input, textarea{
  -webkit-user-select: auto !important;  /* Chrome 49+ */
  -moz-user-select: auto !important;     /* Firefox 43+ */
  -ms-user-select: auto !important;      /* No support yet */
  user-select: auto !important;
}
  
button, input{
  cursor: pointer;
  border: none;
  outline: none;
  padding: 0px;
  &:focus{
    border: none;
    outline: none;
  }
}
  
button{
  *{
    -webkit-pointer-events: none;  /* Chrome 49+ */
    -moz-pointer-events: none;     /* Firefox 43+ */
    -ms-pointer-events: none;    
    pointer-events: none;
  }
  &:disabled{
    cursor: not-allowed !important;
  }
}
img{
  -webkit-pointer-events: none;  /* Chrome 49+ */
  -moz-pointer-events: none;     /* Firefox 43+ */
  -ms-pointer-events: none;    
  pointer-events: none;
}
  
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
  
input[type=number] {
  -moz-appearance: textfield;
}

/* --------------------------------- */
body{
  background-image: url('/img/bg.jpg');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.page-wrapper{
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(0,0,0, 0.7);
}

.login-wrapper{
  width: 90%;
  max-width: 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.title-login{
  color: #ffffff;
  font-size: 20px;
  margin-bottom: 24px;
}
.input-login{
  width: 100%;
  margin-bottom: 12px;
  height: 40px;
  padding: 0px 12px;
  border-radius: 4px;
}
.btn-login{
  margin-top: 12px;
  width: 100%;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  background: linear-gradient(180deg, #73FF9A 0%, #52E60C 52.6%);
  box-shadow: 0px 2px 0px #149712;
}
.btn-login p{
  font-size: 18px;
  color: #096708;
  font-weight: 600;
}

.logo{
  width: auto;
  height: 120px;
  margin-bottom: 16px;
}