/* General form styling */
.container {
    max-width: 700px;
    margin: auto;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Step titles */
h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

/* Form inputs */
.form-group {
    margin-bottom: 15px;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 5px;
    display: block;
}

.form-control {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

/* Button styling */
.btn {
    padding: 10px 16px;
    font-size: 16px;
    border-radius: 5px;
    text-transform: uppercase;
    font-weight: 600;
}

.btn-primary {
    background: #1e6133;
    color: white;
    border: none;
}

.btn-secondary {
    background: #6c757d;
    color: white;
    border: none;
}

.btn-success {
    background: #28a745;
    color: white;
    border: none;
}

.btn:hover {
    opacity: 0.9;
}

/* Step transitions */
.step {
    transition: opacity 0.5s ease-in-out;
}

.d-none {
    display: none;
}

/* Progress indicator */
.progress-container {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    padding: 10px;
}

.progress-step {
    width: 25%;
    text-align: center;
    padding: 8px;
    background: #ddd;
    border-radius: 5px;
    font-weight: 600;
}

.progress-step.active {
    background: #1e6133;
    color: white;
}
