body {
    font-family: Arial, sans-serif;
    background-color: #f0f0f0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.form-container {
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 700px;
}

.logo {
    width: 50px;
    height: 50px;
}

.title {
    font-size: 24px;
    margin: 10px 0;
}

.headline {
    font-size: 14px;
    color: #777;
}

.form-step {
    display: none;
}

.form-step-active {
    display: block;
}

button {
    margin-top: 10px;
}
