/* General Styling */
body {
    font-family: 'Poppins', sans-serif;
    background-color: #f4f4f4;
    color: #333;
    padding: 20px;
}

/* Form Container */
.container {
    max-width: 600px;
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Progress Bar */
.progress {
    height: 8px;
    border-radius: 5px;
    background: #dcdcdc;
}

.progress-bar {
    height: 100%;
    border-radius: 5px;
    background: linear-gradient(90deg, #00c6ff, #0072ff);
    transition: width 0.5s ease-in-out;
}

/* Input Fields */
input, select {
    width: 100%;
    padding: 10px;
    border-radius: 8px;
    border: 1px solid #ddd;
    margin-top: 10px;
}

/* Buttons */
.btn {
    width: 100%;
    padding: 12px;
    font-weight: bold;
    border-radius: 8px;
    border: none;
    transition: all 0.3s ease-in-out;
}

.btn-primary {
    background: linear-gradient(90deg, #0072ff, #00c6ff);
    color: #fff;
}

.btn-warning {
    background: #ffc107;
    color: #fff;
}

.btn-success {
    background: #28a745;
    color: #fff;
}

/* Image Upload */
.image-upload-container {
    text-align: center;
    padding: 10px;
    background: #f9f9f9;
    border-radius: 8px;
}

.img-preview {
    width: 100px;
    height: 100px;
    border-radius: 8px;
    object-fit: cover;
    display: block;
    margin-top: 10px;
    border: 2px solid #ddd;
}
