* { margin: 0; padding: 0; box-sizing: border-box; }
html, body { height: 100%; overflow: hidden; font-family: Arial, sans-serif; color: #ffffff; background: #182140;}

main{
  display: flex;
  height: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px 15px;
}


.logoheader {
  width: 100%;
  text-align: center;
  padding-bottom: 10px;
  align-content: center;
}
.logoheader img{
  height: clamp(100px, 30vw, 150px);
}


#contLoginDataEn{
  text-align: center;
  max-width: 400px;
  width: 100%;
  background: #1a1f2b linear-gradient(70deg, black, transparent);
  border-radius: 10px;
  border: 3px solid #ccb848;
  padding: 20px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.7);
}
#contLoginDataEn > h3{
  padding-bottom: 15px;
}


#formLoginDataEn > div{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
#formLoginDataEn > button{
  margin-top: 15px;
}

#lastnameinp{
  display: none !important;
}

.maininputstext{
  width: 100%;
  height: 30px;
  padding: 10px;
  color: #ffffff;
  margin-bottom: 10px;
  border: solid 1px #c1a400;
  border-radius: 8px;
  background: #131822;
  transition: all 0.3s;
}
.maininputstext.passcast{
  -webkit-text-security: square;
}
.maininputstext:focus {
  outline: none;
  border-color: #cbb747;
  height: 35px;
  margin-bottom: 15px;
  border: solid 2px #cbb747;
  box-shadow: 0 0 8px rgb(204 184 72 / 71%);
}
.maininputstext.enter-active {
  transform: scale(0.98);
}


.mainbutton14 {
  font-size: 14px;
  height: 35px;
  padding: 0 15px;
  border-radius: 8px;
  background: #131822;
  color: #ffffff;
  border: solid 1px #c1a400;
  transition: all 0.4s;
}
.mainbutton14:hover{
  background: #443a00;
  border: solid 1.5px #d4b400;
}
.mainbutton14:active{
  transform: scale(0.97);
  border: solid 1.5px #c1a400;
  background: #c1a400;
}
