body {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f9f9f9;
}

.form-container {
    width: 100%;
    max-width: 600px;
    background-color: #ffffff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.2);
}
.hero .btn-primary-2 {
    border-color: #212529;
    color: #333;
    padding: 0.75rem 2.5rem;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.form-step {
    display: none;
}

.form-step.active {
    display: block;
}

h2 {
    color: #333;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

label {
    font-weight: bold;
    margin-top: 1rem;
    display: block;
}

input, select, button {
    width: 100%;
    padding: 10px;
    margin-top: 8px;
    margin-bottom: 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
}

button.next-btn, button.prev-btn {
    background-color: #ffc513;
    color: #ffffff;
    border: none;
    cursor: pointer;
}

button.next-btn:hover, button.prev-btn:hover {
    background-color: #ffc513;
}

.verify-btn {
    background-color: #6c757d;
    color: #ffffff;
    border: none;
    cursor: pointer;
    margin-top: 5px;
    width: auto;
    display: inline-block;
    padding: 5px 10px;
}
