
:root{
  --page-shift: 0px;    
  --logo-gap: 12px;      
  --logo-shift: -10px;   
}

html, body{
  height: 100%;
  margin: 0;
}


body.page-login{
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-family: Arial, sans-serif;
  background: #2A2A2A;
  color: #fff;
}


body.page-login .login-page{
  flex: 1;               
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;              
  gap: var(--logo-gap);                  
  padding-left: 16px;
  padding-right: 16px;
}


body.page-login .logo{
  max-width: 580px;
  max-height: 80px;
  margin: 0;
  display: block;
  transform: translateY(var(--logo-shift));

}


body.page-login .login-container{
  background: #fff;
  color: #000;
  padding: 22px 40px;
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(0,0,0,0.30);
  min-width: 340px;
  text-align: center;
}

body.page-login h1{
  margin: 0 0 10px 0;
}

body.page-login p.welcome{
  margin: 0 0 20px 0;
  color: #444;
}

body.page-login .input-group{
  margin-bottom: 15px;
  text-align: left;
}

body.page-login .input-group label{
  display: block;
  margin-bottom: 5px;
  font-size: 14px;
}

body.page-login .input-group input{
  width: 100%;
  padding: 10px;
  border-radius: 4px;
  border: 1px solid #ccc;
  font-size: 14px;
  box-sizing: border-box;
}


body.page-login .btn-login{
  width: 100%;
  padding: 10px;
  border: none;
  border-radius: 4px;
  background: #444;
  color: #fff;
  font-size: 14px;
  cursor: pointer;
}

body.page-login .btn-login:hover{
  opacity: 0.9;
  
}


body.page-login .login-error{
  margin-top: 10px;
  font-size: 12px;
  line-height: 1.35;
  text-align: center;
  color: #c0392b;
  opacity: 1;
  transition: opacity 0.6s ease;
}

body.page-login .login-error.is-hiding{
  opacity: 0;
}

body.page-login .login-error .error-icon{
  font-weight: 800;
  margin-right: 6px;
}
.index-footer{
  width: 100%;
  text-align: center;
  font-family: 'Bahnschrift', 'Segoe UI', sans-serif;
  font-size: 11px;
  color: #ffffff;
  opacity: 0.9;
  user-select: none;
  margin-top: -320px;
  padding-bottom: 10px;
}
.login-header{
  position: relative;
}

.lang-switch{
  position: absolute;
  top: 14px;
  right: 14px;
  display: flex;
  gap: 6px;

  
  margin-top: -90px;
  margin-right: -20px;
    margin-left: -0px;
}

.lang-switch a{
  padding: 6px 10px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.18);
  text-decoration: none;
  color: #fff;

  opacity: .75;
  background: transparent;

  transition: border-color .15s ease, background-color .15s ease, opacity .15s ease, box-shadow .15s ease, transform .05s ease;
}

.lang-switch a:hover{
  opacity: 1;
  border-color: #CF086A;
  box-shadow: 0 0 0 2px rgba(207, 8, 106, .35);
}


.lang-switch a.active{
  opacity: 1;
  border-color: #CF086A;
  background: rgba(59, 59, 59, 0.18);
  box-shadow: 0 0 0 2px rgba(207, 8, 106, .25) inset;
}


.lang-switch a:active{
  transform: translateY(1px);
}


.lang-switch a:focus-visible{
  outline: none;
  border-color: #CF086A;
  box-shadow: 0 0 0 3px rgba(207, 8, 106, .45);
}
