h1 {
    text-align: center;
    margin: 25px;
}

body {
    margin-top: 30px;
    background-color: #FBFBFB;
}

input[type=text] {
    width: 488px;
    height: 38px;
    border: 1px solid #BBBBBB;
    border-radius: 12px;
    margin-bottom: 32px;
    padding: 10px;
}

select {
    width: 488px;
    height: 38px;
    border: 1px solid #BBBBBB;
    border-radius: 12px;
    margin-bottom: 32px;
    padding: 10px;
}

.step-card {
    margin: auto;
    width: 500px;
    height: 600px;
    background-color: white;
    box-shadow: 2px 2px 4px grey;
    padding: 80px 54px;
    border-top-left-radius: 33px;
    border-bottom-right-radius: 33px;
    border-bottom-left-radius: 33px;
    position: relative;
    display: none;
}

.show {
    display: block;
}

#onboard-1 img {
    width: 100px;
    margin-left: 200px;
}


#onboard-6 img {
    width: 100px;
    margin-left: 200px;
    margin-top: 40px;
}




.button {
    width: 488px;
    height: 43px;
    background-color: #DC1F1F;
    border-radius: 29px;
    cursor: pointer;
    color: white;
    border-width: 0;
    border-color: white;
    transition: border-width 0.2s;
    position: absolute;
    bottom: 80px;
}

button,
input[type="submit"] {
    width: 488px;
    height: 43px;
    background-color: #DC1F1F;
    border-radius: 29px;
    cursor: pointer;
    color: white;
    border-width: 0;
    border-color: white;
    transition: border-width 0.2s;
    margin-top: 50px;
}


.button[disabled] {
    background-color: #ccc;
    color: white;
    cursor: not-allowed;
}

.center {
    text-align: center;
}

