body {
    background-color: #dbeeff;
}

.test{
    display: flex;
    margin-bottom: 10px;
    justify-content: center;
    align-items: center;
}

.test img {
    width: 250px;
    padding: 0 10px 0 10px;
}

.custom_javascript_popup_full {
    position: fixed;
    top: 50%;
    left: 50%;
    width: 60%;
    transform: translate(-50%, -50%);
    background-color: white;
    padding: 20px 30px 20px 30px;
}

.event-reg-form {
    all: initial;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    justify-content: center;
    padding: 50px 0px;
    height: 80vh;
}

.form-card{
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    min-height: 60%;
    width: 50vw;
    border: 5px solid mediumspringgreen;
    text-align: center;
    border-radius: 20px;
    padding: 10px 0 10px 0;
    margin: 25px 0;
}

.cards{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    
}

.cards > img{
    margin-top: 50px;
    width: 100px;
    height: 100px;
    border-radius: 20px;
}

.form-card > div{
    display: flex;
    gap: 25px;
    margin-left: 15%;
}

.form-card > div > label{
    flex-basis: 100px;
}

.form-card > div > input{
    flex-grow: 1;
    margin-right: 15%;
}

.next-card{
    position: absolute;
    bottom:-5px;
    left: 50%;
    transform: translate(-50%, -50%);
}

.fake-card {
    position: relative;
    min-height: 80px;
    width: 50vw;
    border: 5px solid mediumspringgreen;
    border-bottom: 5px solid antiquewhite;
    border-radius: 20px 20px 0 0;
    padding: 25px 10px 0 10px;
    margin-top: 25px;
}

.submit-all {
    padding-bottom: 50px;
    text-align: center;
}

.submit-all input{
    width: 200px;
    margin: auto;
    padding: 20px;
}

.card-heading {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
}