* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #121212;
    color: white;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

p {
  margin-top: 0.4em;
  line-height: 1.5;
}

  a {
  color: #A9F5D0;

  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: color .5s ease-in-out, border-bottom .5s ease-in-out;
}

    
.welcome_logo {
    width: 4em;
    height: 4em;
    margin-right: 5px;
    margin-top: 5px;
}

.download {
    padding: 10px;
    background-color: #ebffe8;  /* Grüne Farbe für den Button */
    border: none;
    border-radius: 4px;
    color: rgb(0, 95, 0);
    font-size: 1.1em;
    margin-right: 10px;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.download .OS {
    height: 1.3em;
    width: 1.3em;
    margin-right: 5px;
}

a:hover {
  color: lightgreen;
  border-bottom: 2px solid lightgreen;
}
.message-box {
    background-color: #2a2a2a;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-align: center;
    color: white;
    max-width: 500px;
    margin: 100px auto;
    line-height: 1.3

}
.message-box h2 {
    color: #088A68;
    padding-bottom: .4em;
}
.message-box h3, .message-box a {
    color: rgb(255, 55, 55);
    padding-bottom: .4em;
}
.message-box a:hover {
    color: rgb(255, 155, 155);
    padding-bottom: .4em;
}
.message-box h3 {
  font-size: 1.5em;
}
.message-box p {
    padding-bottom: .4em;
}
.larger-space {
    margin-top: 20px; /* Abstand nach dem <br> */
}
.downloadAsApp {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}
.logout-message {
    width: 100%;
    text-align: center;
    background-color: #4CAF50;  /* Grüner Hintergrund */
    color: white;
    padding: 20px 0;  /* Padding oben und unten */
    font-size: 1.5em;
    position: absolute;  /* Positioniert die Nachricht oben */
    top: 0;
    left: 0;
    z-index: 9999;  /* Sicherstellen, dass die Nachricht oben ist */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);  /* Weicher Schatten */
}

.logout-message a {
    color: white;
    font-weight: bold;
    text-decoration: underline;
}

.logout-message a:hover {
    color: #f1f1f1;
}

.container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 80%;
    max-width: 1200px;
    height: 70%;
}

.left, .right {
    width: 45%;
}

.left h4 {
    font-size: 2em;
    margin-bottom: 20px;
}

.left p {
    font-size: 1.2em;
}

.right form {
    background-color: #2a2a2a;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}


.right h2 {
    margin-bottom: 20px;
    font-size: 1.8em;
    text-align: center;
}

.right label {
    display: block;
    margin: 10px 0 5px;
}

.right input {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    background-color: #3e3e3e;
    border: 1px solid #828282;
    border-radius: 2px;
    color: white;
}

.right input:focus {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    background-color: #c7c7c7;
    border: 1px solid #00c853;
    /* outline:1px solid #00c853; */
    outline: none;
    color: #000;
}

.right button {
    padding: 10px;
    background-color: #088A68;  /* Grüne Farbe für den Button */
    border: none;
    border-radius: 4px;
    color: white;
    font-size: 1.1em;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.right button:hover {
    background-color: #006f51;  /* Etwas dunkleres Grün für den Hover-Effekt */
}

/* Responsive Design */
@media (max-width: 768px) {
    .right form {
        background-color: #2a2a2a;
        width: 100%;
        padding: 30px;
        border-radius: 0px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }
    
    .container {
        flex-direction: column;
        width: 100%;
        height: auto;
    }

 h4 {
        font-size: 1.1px;
        color: #fff;
        margin-bottom: 10px;
    }


    
 .welcome_logo {
        width: 4em;
        height: 4em;
        margin-right: 10px;
        margin-top: 5px;
    }

    .left, .right {
        width: 100%;
        padding: 0px;
        margin-bottom: 20px;
    }
    .left {
        padding: 20px;
    }

    .left p {
        font-size: 1em;
    }


    .right form {
        width: 90%;
        margin: 0 auto;
    }
}



