* {
    box-sizing: border-box;
}

#popupForm .tab {
    display: none;
    width: 100%;
    height: 50%;
    margin: 0px auto;
}

#popupForm .current {
    display: block;
}


#popupForm form {
    background-color: #ffffff;
    margin: 50px auto;
    font-family: Raleway;
    width: 70%;
}

#popupForm h1 {
    text-align: center;
}

#popupForm input {
    padding: 10px;
    width: 100%;
    font-size: 17px;
    font-family: Raleway;
    border: 1px solid #aaaaaa;
}

#popupForm button {
    background-color: #da4425;
    color: #ffffff;
    border: none;
    padding: 10px 20px;
    font-size: 17px;
    font-family: Raleway;
    cursor: pointer;
}

#popupForm button:hover {
    opacity: 0.8;
}

#popupForm .previous {
    background-color: #bbbbbb;
}

/* Make circles that indicate the steps of the form: */
#popupForm .step {
    height: 30px;
    width: 30px;
    cursor: pointer;
    margin: 2 2px;
    color: #fff;
    background-color: #bbbbbb;
    border: none;
    border-radius: 50%;
    display: inline-block;
    opacity: 0.8;
    padding: 5px;
    pointer-events: none; /* Disable pointer events */
}

#popupForm .step.active {
    opacity: 1;
    background-color: #da4425;
}

#popupForm .step.finish {
    background-color: #da4425;
}

#popupForm .error {
    color: #f00;
}

#popupForm h3 {
    font-size: 22px;
    font-weight: bolder;
    font-family: system-ui;
}
