.card {
    margin-bottom: 20px;
    background-color: white;
    border-bottom: solid 2px #333;
    display: none;
}

.header {
    display: flex;
    justify-content: center;
}


.headline {
    text-align: center;
    margin: 40px 0;
    margin-bottom: 100px;
}

.box-wrapper {
    margin: 0 auto;
    display: flex;
    position: relative;
    width: 1000px;
    height: 300px;
    text-align: center;
    justify-content: center;
}

.box {
    width: 225px;
    height: 170px;
    margin: 0 15px;
    box-shadow: rgba(50, 50, 93, 15%) 0px 0.938em 2.188em, rgba(0, 0, 0, 10%) 0px 0.313em 0.938em;
    border-radius: 5px;
}

.box:hover {
    background-color: rgb(15, 197, 211);
}



.card.active {
    display: block;
}

/*Input*/
.group-wrapper {
    justify-content: center;
    width: 500px;
    display: flexbox;
    margin: 0 auto;
}

.submit {
    padding: 5px 10px;
    width: 200px;
    height: 100%;
    display: block;
    position: relative;
    margin: 0 auto;
    margin-bottom: 15px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin:  10px 0;
}

.form-group > label {
    font-weight: bold;
    font-size: .8em;
    color: #333;
}

.form-group > input {
    padding: 5px 10px;
    border: 1px solid #333;
    border-radius: .25em;
}