@font-face {
  font-family: TiltNeon;
  src: url("../fonts/TiltNeon-Regular-VariableFont_XROT\,YROT.ttf");
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.bg-register {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../img/register.png");
  background-size: cover;
  background-position: center;
  opacity: 0.9;
  z-index: -1;

}

.container-register {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  width: 100%;
}

.register-cont {
  display: flex;
  flex-direction: column;
  width: 35%;
  padding: 40px 30px;
  border-radius: 8px;
  width: 30%;
  opacity: 0.7;
  background-color: #8c5fff;
  box-shadow: 2px 4px 8px #34235f;

}

.img-cont {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

}

.img-cont img {
  width: 60px;
  height: auto;
  padding: 10px;
}

.img-cont p {
  color: #fff;
  font-size: 24px;
}

.register-cont input {
  border: 0;
  border-radius: 6px;
  padding: 5px 10px 5px 15px;
   font-family: TiltNeon;
   font-size: 22px;
}

.title {
  text-align: center;
  font-family: TiltNeon;
  font-size: 36px;
  border-radius: 4px;
  color: #34235f;
}

.form-label {
  color: #fff;
  font-family: TiltNeon !important;
  margin-left:2px;
  font-family: TiltNeon;
}

input {
  margin-bottom: 20px !important;
}

.text-white {
  text-align: center;
  color: #fff;
  font-size: 18px;
  background-color: red;
}

.btn-outline-secondary {
  border: 0;
  margin-top: 40px;
  border-radius: 6px;
  padding: 5px 20px 5px 20px;
  background-color: #fff !important;
  border-color: #fff !important;
  color: #8c5fff !important;
  font-family: TiltNeon !important;
}

.btn-outline-secondary:hover {
  cursor: pointer;
  border-color: #fff !important;
  background-color: #8c5fff !important;
  color: white !important;

}

@media(min-width: 375px) { 
  .register-cont {
    width: 365px;
  }
  
}