.form-container { 
    background-color: #b41f1f;
    margin-top: 40px;
    max-width: 500px;
    margin: auto;
    padding: 1em;
    border: 1px solid #ccc;
    border-radius: 10px;
    font-family: Arial, sans-serif;
    font-weight: 600;
    color: rgb(33, 33, 159);
}
.step { 
    display: none;
}
.step.active {
    display: block;
}
label, input, textarea {
    display: block;
    width: 100%;
    margin-bottom: 10px;
    border-radius: 6px;
    padding: 2px;

    }
button { 
    padding: 10px 20px;
    margin-top: 10px;
    border-radius: 6px;
    background-color: rgb(33, 33, 159);
    color: white;
    border: none;
    cursor: pointer;
    
}
