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

body {
    font-family: 'Arial', sans-serif;
    display: flex;
    flex-direction: column; /* Ändert die Anordnung von horizontal zu vertikal */
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    /* position: fixed; */
    /* top: -84px; */
    /* margin-top: -84px; */
    color: #fff;

    background: 
        radial-gradient(circle at top left, #253035, transparent),
        radial-gradient(circle at top right, #27ebe1, transparent),
        radial-gradient(circle at bottom right, #183244, transparent),
        radial-gradient(circle at bottom left, #35a5b2, transparent);
    background-repeat: no-repeat;
    
}





h1 {
    margin-bottom: 1.5rem;
    color: #fff; /* Dunklerer Farbton für bessere Lesbarkeit */
}

.form {
    display: flex;
    flex-direction: column;
}

label {
    text-align: left;
    margin: 0.5rem 0;
}

/* Container für das Formular */
.container {
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    width: 70%;
    max-width: 400px;
    text-align: center;
    color: #ffffff;
    position: relative; /* Um das Auto-Login-Vorschlagsfeld korrekt anzuzeigen */
}

/* Eingabefelder */
input[type="email"],
input[type="password"] {
    padding: 0.8rem;
    border: 1px solid #80deea;
    border-radius: 8px;
    margin-bottom: 1rem;
    background: rgba(0,0,0,0.05);
    color: #fff;
    position: relative; /* Hinzufügen von Positionierung für das Eingabefeld */
    z-index: 1; /* Sicherstellen, dass das Eingabefeld korrekt angezeigt wird */
}

/* Für das Auto-Login-Vorschlagsfeld, falls es weiterhin verschoben wird */
input[type="email"]:focus,
input[type="password"]:focus {
    z-index: 2; /* Erhöht den z-index, wenn das Eingabefeld fokussiert wird */
}


.btn {
    background: linear-gradient(135deg, #4fb2af, #1a2642);
    color: white;
    border: none;
    padding: 0.8rem;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    margin-top: 0.5rem;
    transition: background 0.3s ease;
}

.btn:hover {
    filter: brightness(1.2) saturate(0.8); /* Erhöht die Helligkeit um 20% */
}

.divider {
    margin: .5rem 0;
    font-size: 0.9rem;
    color: #ffffffaf; /* Ein sanfteres Grau für die Trennungslinie */
}

.social-btn {
    width: 100%;
    background: linear-gradient(145deg, #00695c, #00796b);
    color: #ffffff;
    padding: 0.8rem;
    border: none;
    border-radius: 8px;
    margin: 0.5rem 0;
    cursor: pointer;
    transition: background 0.3s ease;
}

.apple-btn {
    background: linear-gradient(135deg, #212121, #424242);
}

.google-btn {
    background: linear-gradient(135deg, #4285F4, #1e88e5);
}

.link-btn {
    background: none;
    color: #13e9e1;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    text-decoration: underline;
}
.alpha-svg {
    text-align: center;      /* Zentriert das Bild horizontal */
    margin-bottom: 50px;     /* Fügt einen Abstand zum Container darunter ein */
  }
  
  .alpha-logo {
    max-width: 50%;         /* Sorgt dafür, dass das Bild nicht breiter als der Viewport wird */
    height: auto;
  }

  .hidden {
    display: none;
  }
  
  