/* General container styling */
.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

/* Heading styling */
h2 {
    text-align: center;
    margin-bottom: 30px;
}

/* Tracker steps styling */
.tracker {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
}

.step {
    position: relative;
    padding: 10px 20px;
    text-align: center;
    background-color: #f1f1f1;
    border-radius: 20px;
    flex: 1;
    font-size: 14px;
}

.step.completed {
    background-color: #28a745;
    color: #fff;
}

.step::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    top: 50%;
    right: -15px;
    background-color: #f1f1f1;
    transform: translateY(-50%);
}

.step.completed::after {
    background-color: #28a745;
}

/* Form Group Styling */
.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    box-sizing: border-box;
}

.form-group textarea {
    height: 100px;
}

/* Button Styling */
.btn {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    width: 100%;
}

.btn-primary {
    background-color: #007bff;
    color: white;
}

.btn-primary:hover {
    background-color: #0056b3;
}

.btn-success {
    background-color: #28a745;
    color: white;
}

.btn-success:hover {
    background-color: #218838;
}

/* File input styling */
.form-group input[type="file"] {
    padding: 5px;
    font-size: 16px;
}

/* Responsive styling for smaller screens */
@media (max-width: 768px) {
    .tracker {
        flex-direction: column;
        align-items: center;
    }
    .step {
        margin-bottom: 10px;
    }
    .btn {
        width: auto;
    }
}

/*========== RESPONSIVE SELLER KYC ==========*/
@media (max-width: 480px) {
  .container {
    padding: 10px;
  }
  .step {
    padding: 8px 12px;
    font-size: 12px;
  }
}
