.form-box {
    margin-top: 50px;
    margin-bottom: 100px;
    display: flex;
    justify-content: center;
}


form {
    display: flex;
    flex-direction: column;
    width: 700px;
    border: 1px solid;
    padding: 100px;
    border-radius: 100px;
    box-shadow: 10px 10px rgb(198, 201, 204);
}

form label {
    margin: 10px;
}

form input {
    background-color: rgb(170, 173, 175);
    color: white;
    font-size: large;
    width: 100%;
    height: 30px;
}

form textarea {
    background-color: rgb(170, 173, 175);
    color: white;
    font-size: large;
    width: 100%;
    height: 200px;
}

.User-data {
    display: flex;
    flex-direction: row;
}

.User-data label {
    width: 100%;
}

.Datenschutz {
    display: flex;
    align-items: center;
    margin-left: 5px;
}

.Datenschutz a {
    color: orangered; 
    font-weight: bold;
    font-size: medium;
}

.Datenschutz input {
    width: 20px;
    cursor: pointer;
}

.Datenschutz a:hover {
    color:  rgb(148, 146, 146);;
}

.Buttons {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin: 10px;
}

.Buttons input{
    width: 200px;
    margin: 60px;
    font-size: large;
    border-radius: 10px;
    color: rgb(5, 5, 5);
    background-color: rgb(170, 173, 175);
}

.Buttons input:hover {
    background-color: rgb(219, 219, 219);
    cursor: pointer;
}