/* This file handles all styles for login and install*/

 #loginFront {
  position: relative;
  width: 100%;
  height: 100vh; /* ganze Bildschirmhöhe */
  overflow: hidden;
}

#loginWindow #loginFront {
  height: auto;
}


.iconLoginPage {
  position: absolute;
  top: 0;
  left: 50%;
  height: 100%;
  width: auto; /* Breite ist flexibel */
  transform: translateX(-50%); /* zentriert das Bild horizontal */
  object-fit: contain; /* skaliert ohne zuschneiden */
  z-index: 1;
}

#forgetPasswort {
  width: 50px;
}
.buttonAndFieldRowColumnElement {
  width: 20px;
  display: flex;
  margin:auto;
  background: var(--COLOR_BACKGROUND);
}

.loginButton
{
    height: calc(100% - 8px);
    font-size: 13px;
    background: var(--COLOR_BACKGROUND);
}

.loginButton {
  text-align: center;
  text-transform: uppercase;
  transition: 0.5s;
  background-size: 200% auto;
  cursor: pointer;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
}

.loginButton:hover {
  background-position: right center;
  background-image: linear-gradient(45deg, #FF512F 0%, #F09819  51%, #FF512F  100%);
  /* change the direction of the change here */
  color: #fff;
  text-decoration: none;
}

.loginButton:active {
  transform: scale(0.95);
}

.classLoginContainerPasswort,
.classLoginContainer {
  position: relative;
  z-index: 2;
  max-width: 400px;
  margin: 0 auto;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.85); /* leicht transparentes Weiß */
  border-radius: 8px;
  top: 50%;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
}
.classLoginContainer
{    
  transform: translateY(-50%);
}

.login__field {
    padding:10px 0px;
    position: relative;
}

.login__icon {
    position: absolute;
    top: 20px;
    color: var(--COLOR_MAIN);;
}

.login__input {
    border:none;
    border-bottom-width: medium;
    border-bottom-style: none;
    border-bottom-color: currentcolor;
    border-bottom:2px solid #D1D1D4;
    background:none;
    padding:10px;
    padding-left: 10px;
    padding-left: 24px;
    font-weight: 700;
    width: 75%;
    transition:.2s;
}

 .form-signin 
 {
	max-width: 330px;
	padding-left: 15px;
	padding-right: 15px;
	margin: 0 auto;
	color: var(--COLOR_MAIN);;
 }
 
 #autologin
 {
     display: none;
 }
 
 .classLoginContainer .form-signin-heading,
 .classRegister .form-signin-heading,
 .form-signin .form-signin-heading,
 .form-signin .checkbox {
	margin-bottom: 10px;
	color: orange;
    text-align: center;
 }
  
 .form-signin .checkbox {
	font-weight: normal;
 }
 
 .form-signin .form-control {
	position: relative;
	height: auto;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	padding: 10px;
	font-size: 16px;
 }
 
 .form-signin .form-control:focus {
	z-index: 2;
 }
 
.checkboxAutosave
{
	font-size:100%;
}

.checkboxAutosave.selected
{
	font-size:100%;
	color:var(--COLOR_ACTIVE);
}

 
#buttonAndFieldRow {
    display: flex;
}
#buttonAndFieldRowColumn {
    display: flex;
    flex-direction: row;
}

 .classRegister
 {
	margin-top: 15px;
 }
 
 .btn-lg
 {
	background: transparent;
	border: none;
 }
 
 #twofaQR, .twofaQR
 {
    width: 149px;
    height: 149px;
 }
 
 /* install */ 
.installStartPage
{
    display: flex;
    flex-direction: column;
    background: var(--COLOR_MAIN);
    color: var(--COLOR_BACKGROUND);
}

#installStartPageCloud
{
    display: flex;
    flex-direction: column;
}

#gotoStartPagePlayButton
{
    display: flex;
    flex-direction: column;
}

.installStartPageElement
{
    margin: auto;
    margin-top: 10px;
    margin-bottom: 10px;
}
 
  /* privacy policy */ 
 
 #acceptButtonArea {
  margin: auto;
  width: 50px;
}

#acceptButton {
  background: var(--COLOR_BACKGROUND);
}


<!-- HTML !-->
<button class="button-87" role="button">Button 87</button>

