
@import url('https://fonts.googleapis.com/css2?family=Figtree&display=swap');

.main-website {
  position: relative;
  
  width: 100%;
  height: 100vh;
  z-index: 0;
  
  display: flex;
  align-items: center;
  justify-content: center;
}

.main-website::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../img/mainbg.png");
  filter: blur(3px);
  background-size: cover;
  background-position: center;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: -1;
}


.login-box {
  position: relative;
  z-index: 3;
  margin: 30px;
  padding: 20px 20px 10px 20px ;
  border-radius: 10px;
  background-color: #232323;
  height: auto;
  width: 400px;
  -webkit-box-shadow: 5px 5px 15px -1px rgba(0, 0, 0, 0.65);
}

.icon {
  font-size: 26px;
  background: linear-gradient(to bottom, #fbc449, #de9900);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.2;
  padding-top: 5px;
  margin: 5px;
  cursor: pointer;
}

.icon-login {
  font-size: 18px;
  background: linear-gradient(to bottom, #fbc449, #de9900);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  
}
.logotaxlogin {
  width: 140px;
  height: 40px;
}

.loginhead {
  display: flex;
  justify-content: space-between;
  align-items: center;

}

.formulariologin-inputs {
  display: flex;
  flex-direction: column;
  margin-top: 50px;
  gap: 30px;
  transition: all 0.3s ease;
}

.input-box {
  display: flex;
  border: 2px solid #de9900;
  padding: 5px 5px 5px 15px;
  border-radius: 10px;
  flex-direction: row;
  align-items: center;
  justify-content: start;
  box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.input-box:hover {
  transform: translateY(-3px);
}

.input-box > input {
  width: 100%;
  padding: 10px;
  font-size: 16px;
  outline: none;
  border-radius: 5px;
  border: none;
  background-color: #232323;
  color: white;
  transition: all 0.3s ease;
}

.input-box > input::placeholder {
  color: rgb(129, 129, 129);
  font-family: "Figtree", sans-serif;
  font-weight: 300;
  text-transform: uppercase; 
}


.formulariologin-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  gap: 40px;
  margin-top: 30px;
}

.botao-login {
  padding: 10px 30px;
  border-radius: 10px;
  background: linear-gradient(to right, #fbc449, #de9900);
  color: white;
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.botao-login:hover {
  font-weight: 500;
  color: black;

}

.infos > p {
  margin-bottom: 6px;
  color: white;
}
.infos a {
  color: #de9900;
  text-decoration: none;
  font-weight: 500;
}

.infos a:hover {
  color: #fbc449;
}

p,
span,
div,
h1,
h2,
h3,
a,
button,
label,
i {
 cursor: default !important;
 -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}