body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    /* Ein sanfter, rosa Farbverlauf ähnlich deinem Hintergrund */
    background: linear-gradient(135deg, #fdfbfb 0%, #ebedee 100%), linear-gradient(to bottom, #fce4ec, #f8bbd0);
    background-blend-mode: multiply;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-container {
    background-color: rgba(255, 255, 255, 0.95);
    padding: 40px 60px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 350px;
}

h1 {
    color: #5d1a3a; /* Dunkles Rot/Lila aus deinem Bild */
    font-size: 28px;
    margin-bottom: 5px;
    letter-spacing: 2px;
}

.divider {
    color: #a05a7d;
    margin-bottom: 20px;
}

h2 {
    color: #333;
    font-size: 18px;
    margin-bottom: 20px;
}

input {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 8px;
    box-sizing: border-box;
    font-size: 14px;
    background-color: #f9f9f9;
}

.primary-btn {
    background-color: #a0446b; /* Farbe deines Discord-Buttons */
    color: white;
    border: none;
    padding: 12px 20px;
    width: 100%;
    border-radius: 20px;
    font-size: 16px;
    cursor: pointer;
    margin-top: 15px;
    transition: background-color 0.3s;
}

.primary-btn:hover {
    background-color: #823455;
}

.switch-text {
    margin-top: 20px;
    font-size: 13px;
    color: #666;
}

.switch-text span {
    color: #a0446b;
    cursor: pointer;
    font-weight: bold;
}

.hidden-form {
    display: none;
}

.active-form {
    display: block;
}
