body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: #4fb5b5;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5%;
}

img{
    max-width: 100%;
    width: 100px;
    height: auto;
    margin-bottom: 20px;
}

form {
    max-width: 600px;
    width: 100%;
    background: #ffffff;
    color: #000;
    padding: 20px;
    border-radius: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

label {
    font-weight: bold;
    margin-bottom: 5px;
}

label.text{
    font-weight: 300;
}

input[type="text"],
input[type="email"],
input[type="tel"],
select {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
}

input[type="radio"] {
    margin-right: 5px;
    width: 20px; /* Breite der Checkbox */
    height: 20px; /* Höhe der Checkbox */
    cursor: pointer;
}

input[type="checkbox"] {
    width: 20px; /* Breite der Checkbox */
    height: 20px; /* Höhe der Checkbox */
    cursor: pointer;
}

button {
    width: 100%;
    padding: 20px;
    font-size: 20px;
    color: #fff;
    background-color: #4fb5b5;
    border: none;
    border-radius: 40px;
    cursor: pointer;
    align-self: center;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #3a9292;
}

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

.form-group.radio-group {
    flex-direction: row;
    align-items: center;
    gap: 15px;
}

.form-group.radio-group label {
    font-weight: normal;
    margin: 0;
}

.form-group.radio-group input {
    margin: 0;
}

a {
    color: #4fb5b5;
    text-align: center;
    text-decoration: underline;
}

h2.success {
    text-align: center;
}

h2.error {
    text-align: center;
    color: rgb(255, 70, 70);
}

img.logo-center {
    display: block;
    margin: 0 auto;
}