#mobileAppContainer {
    width: 100%;
    height: 100vh;
    position: relative;
    overflow: hidden;
}

#mobileAppContainer.login {
    background: white;
}

.login-ellipse-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 40vh;
	background: linear-gradient(to bottom, #29083f, #765491);
    clip-path: ellipse(70% 100% at 50% 0%);
    z-index: 1;
}

/* Back link */
.login-back-link {
    position: absolute;
    top: 20px;
    left: 20px;
    color: white;
    text-decoration: none;
    font-size: 15px;
    z-index: 3;
    display: flex;
    align-items: center;
}

.login-back-link svg {
    margin-right: 5px;
}

/* Welcome text */
.login-welcome-text {
    position: absolute;
    top: 70px;
    left: 20px;
    color: white;
    z-index: 3;
}

.login-welcome-text h1 {
    margin: 10px;
    font-size: 2.5rem;
    font-weight: normal;
}

.login-welcome-text p {
    margin: 10px;
    font-size: 1.6rem;
    opacity: 0.9;
}

/* Kreise */
.login-circle1 {
    position: absolute;
    top: 15%;
    left: -140px;
    width: 300px;
    height: 330px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    z-index: 2;
}

.login-circle2 {
    position: absolute;
    top: 25%;
    left: 10%;
    width: 400px;
    height: 400px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    z-index: 2;
}

/* Login-Container */
.login-container {
    position: absolute;
    top: 25vh;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    background-color: white;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    z-index: 3;
}

.login-container h2 {
    text-align: center;
    color: #542e6f;
    margin-bottom: 20px;
    font-size: 2.5rem;
}

.login-form-group {
    position: relative;
    margin-bottom: 15px;
}

.login-form-group label {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 5px;
    display: block;
}

.login-form-group input {
    width: 100%;
    padding: 12px 40px 12px 12px;
    font-size: 1.6rem;
    border: 1px solid #ccc;
    border-radius: 10px;
    outline: none;
    box-sizing: border-box;
}

.login-form-group input:focus {
    border-color: #542e6f;
}

.login-form-group svg {
    position: absolute;
    right: 10px;
    top: 65%;
    transform: translateY(-50%);
    width: 25px;
    height: 25px;
    fill: #aaa;
}

/* Passwort vergessen Link */
.login-forgot-password {
    display: block;
    text-align: right;
    font-size: 1.5rem;
    color: #542e6f;
    text-decoration: none;
    margin-bottom: 20px;
}

.login-forgot-password:hover {
    text-decoration: underline;
}

/* Login-Button */
.login-login-btn {
    width: 90%;
    padding: 14px;
    background-color: #542e6f;
    color: white;
    font-size: 1.8rem;
    border: none;
    border-radius: 10px;
    text-align: center;
    text-decoration: none;
    display: block;
    cursor: pointer;
    transition: background-color 0.3s;
    margin: 0 auto 10px auto;
}

.login-login-btn:hover {
    background-color: #84659b;
}

/* Register Button */
.login-register-btn {
    width: 90%;
    padding: 14px;
    background-color: #84659b;
    color: white;
    font-size: 1.8rem;
    border: none;
    border-radius: 10px;
    text-align: center;
    text-decoration: none;
    display: block;
    cursor: pointer;
    transition: background-color 0.3s;
    margin: 0 auto;
}

.login-register-btn:hover {
    background-color: #84659b;
}

/* Divider */
.login-divider {
    display: flex;
    align-items: center;
    margin: 20px 0;
    position: absolute;
    bottom: 70px;
    width: 70%;
    justify-content: center;
    z-index: 3;
    left: 50%;
    transform: translateX(-50%);
}

.login-divider::before, .login-divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid #ccc;
}

.login-divider-text {
    font-size: 1.2rem;
    color: #666;
    text-align: center;
}

/* Social media icons */
.login-social-login {
    display: flex;
    justify-content: center;
    gap: 20px;
    position: absolute;
    bottom: 20px;
    width: 100%;
}

.login-icon-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
	background: linear-gradient(to bottom, #29083f, #765491);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    transition: box-shadow 0.3s ease;
}

.login-icon-circle:hover {
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
}

.login-icon-circle i {
    font-size: 20px !important;
    color: white;
}

/* Responsive Anpassungen für kleinere Bildschirme */
@media (max-height: 700px) {
    .login-container {
        width: 90%;
        top: 25vh;
        padding: 15px;
    }

    .login-form-group input {
        font-size: 1.3rem;
    }

    .login-login-btn, .login-register-btn {
        font-size: 1.5rem;
        padding: 12px;
    }

    .login-welcome-text h1, .login-welcome-text p {
        font-size: 1.5rem;
    }

    .login-social-login {
        bottom: 10px;
    }

    .login-divider {
        bottom: 50px;
    }
}

@media (max-height: 600px) {
    .login-container {
        width: 95%;
        top: 15vh;
        padding: 10px;
    }

    .login-form-group input {
        font-size: 1.1rem;
    }

    .login-login-btn, .login-register-btn {
        font-size: 1.2rem;
        padding: 10px;
    }

    .login-welcome-text h1, .login-welcome-text p {
        font-size: 1.2rem;
    }

    .login-icon-circle {
        width: 40px;
        height: 40px;
    }

    .login-divider {
        bottom: 40px;
    }

    .login-divider-text {
        font-size: 1rem;
    }
}