@charset "UTF-8";


@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 100;
  font-display: swap;
  src: url('/fonts/roboto/roboto-v27-latin-100.eot');
  src: local(''),
       url('/fonts/roboto/roboto-v27-latin-100.eot?#iefix') format('embedded-opentype'),
       url('/fonts/roboto/roboto-v27-latin-100.woff2') format('woff2'),
       url('/fonts/roboto/roboto-v27-latin-100.woff') format('woff'),
       url('/fonts/roboto/roboto-v27-latin-100.ttf') format('truetype'),
       url('/fonts/roboto/roboto-v27-latin-100.svg#Roboto') format('svg');
}
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('/fonts/roboto/roboto-v27-latin-300.eot');
  src: local(''),
       url('/fonts/roboto/roboto-v27-latin-300.eot?#iefix') format('embedded-opentype'),
       url('/fonts/roboto/roboto-v27-latin-300.woff2') format('woff2'),
       url('/fonts/roboto/roboto-v27-latin-300.woff') format('woff'),
       url('/fonts/roboto/roboto-v27-latin-300.ttf') format('truetype'),
       url('/fonts/roboto/roboto-v27-latin-300.svg#Roboto') format('svg');
}
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/fonts/roboto/roboto-v27-latin-regular.eot');
  src: local(''),
       url('/fonts/roboto/roboto-v27-latin-regular.eot?#iefix') format('embedded-opentype'),
       url('/fonts/roboto/roboto-v27-latin-regular.woff2') format('woff2'),
       url('/fonts/roboto/roboto-v27-latin-regular.woff') format('woff'),
       url('/fonts/roboto/roboto-v27-latin-regular.ttf') format('truetype'),
       url('/fonts/roboto/roboto-v27-latin-regular.svg#Roboto') format('svg');
}
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('/fonts/roboto/roboto-v27-latin-500.eot');
  src: local(''),
       url('/fonts/roboto/roboto-v27-latin-500.eot?#iefix') format('embedded-opentype'),
       url('/fonts/roboto/roboto-v27-latin-500.woff2') format('woff2'),
       url('/fonts/roboto/roboto-v27-latin-500.woff') format('woff'),
       url('/fonts/roboto/roboto-v27-latin-500.ttf') format('truetype'),
       url('/fonts/roboto/roboto-v27-latin-500.svg#Roboto') format('svg');
}
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/fonts/roboto/roboto-v27-latin-700.eot');
  src: local(''),
       url('/fonts/roboto/roboto-v27-latin-700.eot?#iefix') format('embedded-opentype'),
       url('/fonts/roboto/roboto-v27-latin-700.woff2') format('woff2'),
       url('/fonts/roboto/roboto-v27-latin-700.woff') format('woff'),
       url('/fonts/roboto/roboto-v27-latin-700.ttf') format('truetype'),
       url('/fonts/roboto/roboto-v27-latin-700.svg#Roboto') format('svg');
}
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url('/fonts/roboto/roboto-v27-latin-900.eot');
  src: local(''),
       url('/fonts/roboto/roboto-v27-latin-900.eot?#iefix') format('embedded-opentype'),
       url('/fonts/roboto/roboto-v27-latin-900.woff2') format('woff2'),
       url('/fonts/roboto/roboto-v27-latin-900.woff') format('woff'),
       url('/fonts/roboto/roboto-v27-latin-900.ttf') format('truetype'),
       url('/fonts/roboto/roboto-v27-latin-900.svg#Roboto') format('svg');
} 



body {
    background-image: url(login-background.jpg);
    background-position: center center;
    background-attachment: fixed;
    background-size: cover;
    background-repeat: no-repeat;
    font-family: Roboto;
    color: #fff;
    font-size: 18px;    
    line-height: 24px;
    height: 100%;
    margin: 0;
    padding: 0;
}

.container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh; /* 100% der Bildschirmhöhe */
    text-align: center;
}

.logo {
    position: absolute;
    top: 10px; /* Anpassen der vertikalen Position des Logos */
    left: 10px; /* Anpassen der horizontalen Position des Logos */
    height: 50px; /* Anpassen der Größe des Logos */
}

.content {
    max-width: 800px;
    margin-top: 70px; /* Anpassen des Abstands zwischen dem Logo und dem Inhalt */
    padding: 0 10px; /* Hinzufügen von Padding für den Inhalt */
    text-align: center;
}

.text {
    font-family: Roboto;
    font-size: 18px;    
    line-height: 24px;
}

.text a {
    color: #cccccc;
}

/* Für Bildschirme mit einer maximalen Breite von 768px (Tablets und kleinere Geräte) */
@media screen and (max-width: 768px) {
    body {
        font-size: 16px; /* Beispiel für eine größere Schriftgröße für mobile Geräte */
    }

    .content {
        max-width: 90%; /* Beispiel für eine Anpassung der Breite des Inhaltsbereichs */
    }

    .text {
        font-size: 16px; /* Beispiel für eine kleinere Schriftgröße für den Textinhalt */
        line-height: 20px; /* Beispiel für eine größere Zeilenhöhe für den Textinhalt */
		padding:20px;
    }

    /* Weitere Anpassungen für mobile Geräte hier hinzufügen */
}
