* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* General body styles */
body {
    font-family: 'Segoe UI', sans-serif;
    background-color: #f9f9f9;
    padding: 20px;
    margin: 0;
    color: #333;
}

.main-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 2rem;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Container form styling */
form {
    max-width: 600px;
    margin: 0 auto;
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

/* Section heading */
h1 {
    text-align: center;
    color: magenta;
    margin-bottom: 30px;
}

h2 {
    color: #444;
    margin-bottom: 10px;
}

/* Each step section */
section {
    margin-bottom: 20px;
}

/* Form elements */
label {
    display: block;
    margin: 10px 0 5px;
}

input,
select {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 16px;
}

button {
    padding: 10px 20px;
    margin-top: 10px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s ease;
}

/* Button colors */
button[type="button"] {
    background-color: magenta;
    color: white;
}

button[type="submit"] {
    background-color: mediumorchid;
    color: white;
}

button:hover {
    opacity: 0.7;
}

button+button {
    margin-left: 10px;
}



/* Responsive */
@media (max-width: 600px) {

    button {
        width: 100%;
        margin-bottom: 10px;
    }

    button+button {
        margin-left: 0;
    }
}