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

#mobileAppContainer.register {
    background: white;
}

.register-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 */
.register-back-link {
    position: absolute;
    top: 20px;
    left: 20px;
    color: white;
    text-decoration: none;
    font-size: 15px;
    z-index: 3;
    display: flex;
    align-items: center;
}

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

.centered-text {
    text-align: center;
    width: 100%; /* oder eine beliebige Breite */
    margin: 0 auto;
	margin-bottom: 20px; 
}

/* Welcome text */
.register-welcome-text {
    position: absolute;
    top: 70px; /* Vertikale Position bleibt wie vorher */
    left: 50%;
    transform: translateX(-50%); /* Nur horizontale Zentrierung */
    color: white;
    z-index: 3;
    text-align: center; /* Text wird horizontal zentriert */
    width: 80%; /* Optional: Kann angepasst werden */
}

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

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

/* Kreise */
.register-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;
}

.register-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;
}

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

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

/* Form-Gruppe */
.register-form-group {
    position: relative;
    margin-bottom: 15px;
}

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

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

.register-form-group input:focus, .register-form-group select:focus {
    border-color: #542e6f;
}

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

/* Register-Button */
.register-btn {
    width: 100%;
    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-bottom: 20px;
}

.register-btn:hover {
    background-color: #84659b; /* Gleiche Farbe wie im normalen Zustand */
    color: #fff; /* Gleiche Textfarbe wie im normalen Zustand */
    text-decoration: none; /* Keine Unterstreichung beim Hover */
}

/* Divider */
.register-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%);
}

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

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

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

.register-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;
}

.register-icon-circle i {
    font-size: 20px;
    color: white;
}

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

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






/* Modal Dialog */
.custom-mobile-modal-dialog {
    background-color: #fff;
    border-radius: 8px;
    width: 90%;
    max-width: 600px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Modal Header */
.custom-mobile-modal-header {
	background: linear-gradient(to bottom, #29083f, #765491);
    color: #fff;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.custom-mobile-modal-title {
    margin: 0;
    font-size: 18px;
}

.custom-mobile-close {
    font-size: 24px;
    cursor: pointer;
    color: #fff;
}

/* Modal Body */
.custom-mobile-modal-body {
    padding: 20px;
    font-size: 14px;
}

/* Modal Footer */
.custom-mobile-modal-footer {
    padding: 15px;
    display: flex;
    justify-content: center;
}

/* Schaltfläche im Modal */
.custom-mobile-btn {
    background-color: #311048;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    width: 100%; /* Volle Breite */
}

.custom-mobile-btn:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

/* Input Gruppen Design */
.custom-mobile-inputGroup {
    margin: 15px 0;
    display: flex;
    align-items: flex-start; /* Vertikale Ausrichtung mit dem Label */
    justify-content: flex-start;
}

/* Standard-Checkbox */
.custom-mobile-inputGroup input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 20px;
    height: 20px;
    background-color: #fff;
    border: 2px solid #6d4c88;
    border-radius: 4px;
    position: relative;
    cursor: pointer;
    margin-right: 10px;
    margin-top: 4px; /* Etwas Platz über der Checkbox */
    display: inline-block;
    flex-shrink: 0; /* Die Checkbox soll ihre Größe beibehalten */
}

/* Gecheckte Checkbox */
.custom-mobile-inputGroup input[type="checkbox"]:checked {
    background-color: #694884;
    border-color: #3c1b54;
}

.custom-mobile-inputGroup input[type="checkbox"]:checked::before {
    content: "✓";
    display: block;
    text-align: center;
    color: #fff;
    font-size: 16px;
    line-height: 20px;
}

/* Label Styling */
.custom-mobile-inputGroup label {
    margin: 0;
    font-size: 14px;
    line-height: 1.4;
    display: block;
    flex: 1;
    word-wrap: break-word;
}

/* Kleinere Schrift für Zusatzinformationen */
.small-text {
    font-size: 12px;
    display: block;
    margin-top: 5px; /* Platz zwischen normalem und kleinem Text */
    line-height: 1.3;
    color: #555; /* Eine etwas hellere Farbe für den kleineren Text */
}

/* Link Styling im Label */
.custom-mobile-inputGroup label a {
    color: #6b4985;
    text-decoration: none;
}

.custom-mobile-inputGroup label a:hover {
    text-decoration: underline;
}

/* Responsive Anpassung */
@media (max-width: 768px) {
    .custom-mobile-modal-dialog {
        width: 90%;
    }
}