/* General styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f7f7f7;
}

.container {
    width: 95%;
    max-width: 2000px;
    margin: 20px auto;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    overflow: hidden;
}

/* Header styles */
header {
    background-color: white;
    padding: 20px;
    text-align: center;
    /* border-bottom: 1px solid #ddd; */
}

header h1 {
    margin: 0;
    font-size: 24px;
}

/* Progress bar */
/* .progress-bar {
    display: flex;
    justify-content: space-around;
    background-color: #f4f4f4;
    padding: 10px;
    border-bottom: 1px solid #ddd;
} */

/* .step {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 14px;
    color: #aaa;
} */

/* .step.active {
    color: #ff6600;
    font-weight: bold;
} */

/* .step span {
    margin-top: 5px;
} */

/* Form container */
.form-container {
    padding: 20px;
}

.form-container h2 {
    margin-top: 0;
    margin-bottom: 20px;
    color: #007bff;
    font-size: 20px;
    border-bottom: 2px solid #ddd;
    padding-bottom: 5px;
}

/* Form group styles */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 8px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 3px;
}

/* Back button */
.back-btn {
    display: inline-block;
    margin: 20px;
    padding: 10px 20px;
    font-size: 14px;
    color: #fff;
    background-color: #007bff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
}

.back-btn:hover {
    background-color: #0056b3;
}
