body {
    font-family: Arial, sans-serif;
    background: linear-gradient(135deg, #74ebd5, #9face6);
    margin: 15px;
    height: 100vh;
    display: flex;
    justify-content: center;
    flex-direction: column; 
    align-items: center;
}

.container {
    background: white;
    padding: 15px;
    margin-bottom: 10px;
    border-radius: 15px;  
    width: 320px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.containerX {
    background: white;
    padding: 15px;
    margin-bottom: 10px;
    border-radius: 15px;  
    width: 320px;
    overflow-y: auto;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.container2 {
    background: white;
    padding: 30px;
    margin-bottom: 10px;
    border-radius: 15px;
    width: 95%;
    max-height: 95%;
    overflow-y: auto;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}
.container3 {
    background: white;
    padding: 30px;
	margin-bottom: 10px;
    border-radius: 15px;
    width: 80%;
    max-height: 95%;
    overflow-y: auto;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}
.container4 {
    background: lightgrey;
    padding: 30px;
    margin-bottom: 10px;
    border-radius: 15px;
    width: Flex;
    max-height: 95%;
    overflow-y: auto;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

h2 {
    text-align: center;
    margin-bottom: 20px;
}

p {
    margin: 10px 0;
}
br {
    display: block; 
    content: ""; 
    margin-bottom: 10px;
}

input {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    margin-bottom: 15px;
    border-radius: 10px;
    border: 1px solid #ccc;
    outline: none;
}

/* Ausnahmen für die Action-Buttons nebeneinander */
/* Container für die Buttons */


input:focus {
    border-color: #6c63ff;
}

.r-action-buttons {
    display: flex;          /* Elemente nebeneinander */
    gap: 10px;              /* Abstand zwischen den Elementen */
    align-items: center;    /* vertikal zentrieren */
}

/* Passwort-Stärkeanzeige */
#strength-bar {
    width: 100%;
    height: 8px;
    background: #ddd;
    border-radius: 10px;
    margin-bottom: 5px;
}

#strength-fill {
    height: 100%;
    width: 0%;
    border-radius: 10px;
    transition: 0.3s;
}

#strength-text {
    font-size: 12px;
    display: block;
    margin-bottom: 10px;
}

input[type="submit"] {
    background: #6c63ff;
    color: white;
    border: none;
    cursor: pointer;
}

input[type="submit"]:hover {
    background: #5848e5;
}

input[type="submit"], 
button {
    background: #6c63ff;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px; /* Sieht oft moderner aus */
    cursor: pointer;
    font-size: 16px;
    transition: background 0.3s; /* Macht den Hover-Effekt weicher */
}

input[type="submit"]:hover, 
button:hover {
    background: #5848e5;
}

label.radio-row {
    display: flex;
    align-items: center;
    gap: 8px;
}
