body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
}

#registration-form {
    /* max-width: 800px; */
    /* Increased width for desktop */
    max-width: 1230px;
    margin: 50px auto;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 30px;
    /* Increased padding for better spacing */
}

h2 {
    text-align: center;
    color: #333;
    margin-bottom: 20px;
}

.form-section {
    display: none;
}

.form-section.active {
    display: block;
}

label {
    font-weight: bold;
    margin: 10px 0 5px;
    display: block;
    color: #333;
}

input[type="text"],
input[type="tel"],
input[type="email"],
select {
    width: calc(100% - 20px);
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
    transition: border-color 0.3s;
}

input[type="text"]:focus,
input[type="tel"]:focus,
input[type="email"]:focus,
select:focus {
    border-color: #0080ff;
    outline: none;
}

button {
    padding: 10px 15px;
    margin: 10px 5px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    background-color: #007BFF;
    color: white;
    font-size: 16px;
    transition: background-color 0.3s, transform 0.2s;
}

button:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
}

.navigation {
    display: flex;
    justify-content: space-between;
}

.progress-bar {
    margin-bottom: 20px;
    height: 5px;
    background-color: #007BFF;
    transition: width 0.3s;
}

.step-indicator {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.step {
    width: 100%;
    height: 10px;
    background-color: #ddd;
    border-radius: 5px;
    position: relative;
}

.step.active {
    background-color: #007BFF;
}

@media (max-width: 800px) {
    #registration-form {
        width: 90%;
        padding: 20px;
    }

    input[type="text"],
    input[type="tel"],
    input[type="email"],
    select {
        font-size: 16px;
    }

    button {
        font-size: 16px;
    }
}