body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f8f9fa;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.header {
    background-color: #008000;
    color: white;
    padding: 15px 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.header h1 {
    margin: 0;
    font-size: 24px;
    font-weight: 600;
}

.header p {
    margin: 0;
    font-size: 14px;
    opacity: 0.9;
}

.footer {
    background-color: #008000;
    color: white;
    padding: 15px 0;
    margin-top: auto;
    box-shadow: 0 -2px 4px rgba(0,0,0,0.1);
}

.footer p {
    margin: 0;
    font-size: 14px;
}

.main-content {
    flex: 1;
    padding: 30px 0;
}

.step-indicator {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    position: relative;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.step-indicator::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 40px;
    right: 40px;
    height: 2px;
    background-color: #e9ecef;
    z-index: 1;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
    width: 80px;
}

.step-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #e9ecef;
    color: #6c757d;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-bottom: 8px;
    transition: all 0.3s ease;
}

.step.active .step-circle {
    background-color: #008000;
    color: white;
    transform: scale(1.1);
}

.step.completed .step-circle {
    background-color: #28a745;
    color: white;
}

.step-label {
    font-size: 12px;
    color: #6c757d;
    text-align: center;
    font-weight: 500;
}

.step.active .step-label {
    color: #008000;
    font-weight: 600;
}

.form-container {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.08);
    padding: 25px;
    max-width: 800px;
    margin: 0 auto;
}

.step-title {
    color: #008000;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 25px;
    padding-bottom: 12px;
    border-bottom: 2px solid #e9ecef;
    display: flex;
    align-items: center;
}

.step-title i {
    margin-right: 10px;
    font-size: 20px;
}

.form-section {
    margin-bottom: 25px;
}

.form-section h4 {
    color: #008000;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 1px solid #e9ecef;
    display: flex;
    align-items: center;
}

.form-section h4 i {
    margin-right: 8px;
    font-size: 14px;
}

.form-group {
    margin-bottom: 15px;
}

.form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 15px;
}

.form-row .form-group {
    flex: 1;
    min-width: 200px;
}

label {
    font-weight: 500;
    color: #333;
    margin-bottom: 5px;
    display: block;
    font-size: 14px;
}

input[type="text"], input[type="date"], input[type="tel"], input[type="email"], input[type="password"], select, textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ced4da;
    border-radius: 6px;
    font-size: 14px;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

input[type="text"]:focus, input[type="date"]:focus, input[type="tel"]:focus, input[type="email"]:focus, input[type="password"]:focus, select:focus, textarea:focus {
    border-color: #008000;
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(0, 128, 0, 0.25);
}

.btn-step {
    background-color: #008000;
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.15s ease-in-out;
    display: inline-flex;
    align-items: center;
}

.btn-step:hover {
    background-color: #006400;
    transform: translateY(-2px);
}

.btn-step-secondary {
    background-color: #6c757d;
}

.btn-step-secondary:hover {
    background-color: #5a6268;
}

.step-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

.redtxt {
    color: #dc3545;
    font-style: italic;
    font-size: 12px;
    margin-top: 5px;
}

@media (max-width: 768px) {
    .step-indicator {
        flex-wrap: wrap;
        gap: 15px;
        justify-content: center;
    }
    .step-indicator::before {
        display: none;
    }
    .form-row {
        flex-direction: column;
    }
    .main-content {
        padding: 15px 0;
    }
    .form-container {
        padding: 20px;
    }
    .header h1 {
        font-size: 20px;
    }
    .step-title {
        font-size: 18px;
    }
}