/* Basic styles for the multi-step form */

.multi-step-form-container {
    max-width: 600px;
    margin: 20px auto;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.step {
    
}

.step h2 {
    margin-top: 0;
}

label {
    display: block;
    margin-bottom: 5px;
}

input[type="text"],
input[type="email"],
textarea {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 3px;
    box-sizing: border-box; /* Include padding and border in the element's total width and height */
}


button {
    background-color: #007bff; /* Blue */
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    margin-right: 10px;  /* Add some spacing between buttons */
}

button:hover {
    background-color: #0056b3; /* Darker blue on hover */
}

.form-messages {
    margin-top: 10px;
}

.form-messages .success {
    color: green;
}

.form-messages .error {
    color: red;
}

/* Responsive adjustments (optional) */
@media (max-width: 480px) {
    .multi-step-form-container {
        padding: 10px;
    }
}


