/* Main container styles */
.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
}

.main-heading {
    color: #0F3664;
    text-align: center;
    margin-bottom: 30px;
    font-weight: bold;
}

/* Application card */
.application-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 30px;
}

.subtitle {
    margin-bottom: 30px;
    color: #333;
}

/* Progress steps */
.progress-container {
    display: flex;
    justify-content: space-between;
    margin: 40px 0;
    position: relative;
}

.progress-container::before {
    content: '';
    position: absolute;
    background: #e0e0e0;
    height: 2px;
    width: 100%;
    top: 15px;
    left: 0;
    z-index: 1;
}

.step-item {
    position: relative;
    z-index: 2;
    text-align: center;
    flex: 1;
}

.step-number {
    width: 30px;
    height: 30px;
    background: #e0e0e0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 8px;
    color: #666;
    font-weight: bold;
}

.step-title {
    font-size: 12px;
    color: #666;
    white-space: nowrap;
}

.step-item.active .step-number {
    background: #2b73d4;
    color: white;
}

.step-item.completed .step-number {
    background: #2b73d4;
    color: white;
}

/* Form styles */
.form-group {
    margin-bottom: 20px;
}

label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    color: #333;
}

.required {
    color: #666;
    font-weight: normal;
    font-style: italic;
    font-size: 14px;
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="tel"],
input[type="date"] {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}

/* Button styles */
.form-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

.btn {
    padding: 12px 30px;
    border: none;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.3s ease;
}

.btn-primary {
    background: #F9A826;
    color: white;
    min-width: 120px;
}

.btn-secondary {
    background: #e0e0e0;
    color: #333;
    min-width: 120px;
}

.btn-primary:hover {
    background: #e89b1d;
}

.btn-secondary:hover {
    background: #d0d0d0;
}

h2 {
    color: #0F3664;
    margin-bottom: 10px;
}

h3 {
    color: #0F3664;
    margin-top: 20px;
    margin-bottom: 20px;
}
.branch-radio {
    display: flex;
    align-items: center;
    width: 100%;
    cursor: pointer;
    margin: 0;
}

.branch-radio input[type="radio"] {
    margin-right: 15px;
}

.branch-details {
    flex: 1;
}

.branch-item {
    background-color: #f8f9fa;
    border-left: 4px solid #007bff;
    padding: 10px 15px;
    margin-bottom: 10px;
    border-radius: 4px;
    transition: background-color 0.2s;
}

.branch-item:hover {
    background-color: #e9ecef;
}

.branch-radio input[type="radio"]:checked + .branch-details {
    font-weight: bold;
}

.branch-item:has(input[type="radio"]:checked) {
    background-color: #e6f2ff;
    border-left-color: #0056b3;
}