/* Form Container */
.form-container {
    max-width: 400px;
    margin: 100px auto;
    background: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Progress Bar */
.progress {
    height: 10px;
    background: #e9ecef;
    border-radius: 5px;
    margin-bottom: 20px;
    overflow: hidden;
}

.progress-bar {
    background: #6aa121;
    transition: width 0.5s ease;
}

/* Form Steps */
.step {
    display: none;
    animation: fadeIn 0.5s ease;
}

.step.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Form Groups */
.form-group {
    margin-bottom: 20px;
    position: relative;
}

.form-group label {
    display: block;
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 10px;
    color: #000000;
}

.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #6aa121;
    font-size: 14px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background: #f9f9f9;
    color: #333;
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: #6aa121;
    box-shadow: 0 0 8px rgba(106, 161, 33, 0.3);
    outline: none;
    background: #fff;
}

.form-group input:hover, .form-group select:hover, .form-group textarea:hover {
    border-color: #6aa121;
}

/* Password Field Specific Styles */
.password-field {
    position: relative;
}

.password-toggle {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #6aa121;
    z-index: 10;
    background: none;
    border: none;
    padding: 0;
    font-size: 18px;
}

/* Placeholder Styles */
.form-group input::placeholder, .form-group textarea::placeholder {
    color: #999;
}

/* Dropify Styles */
.dropify-wrapper {
    border: 2px dashed #6aa121;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    background: #f9f9f9;
    cursor: pointer;
    transition: border-color 0.3s ease, background 0.3s ease;
}

.dropify-wrapper:hover {
    border-color: #5a8f1d;
    background: #f1f1f1;
}

.dropify-wrapper .dropify-message span.file-icon {
    color: #6aa121;
}

.dropify-wrapper .dropify-message p {
    font-size: 14px;
    color: #333;
    margin-top: 10px;
}

/* Error Styles */
.invalid-feedback {
    color: #dc3545;
    font-size: 14px;
    margin-top: 5px;
}

.is-invalid {
    border-color: #dc3545 !important;
}

/* Custom Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px; /* Space between icon and text */
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.btn i {
    font-size: 18px; /* Icon size */
}

.btn-primary {
    background: #6aa121;
}

.btn-primary:hover {
    background: #5a8f1d;
    transform: translateY(-2px);
}

.btn-secondary {
    background: #6c757d;
}

.btn-secondary:hover {
    background: #5a6268;
    transform: translateY(-2px);
}

.btn-success {
    background: #28a745;
    border: none;
}

.btn-success:hover {
    background: #218838;
    transform: translateY(-2px);
}

/* Terms and Conditions Link */
#viewTerms {
    color: #6aa121;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

#viewTerms:hover {
    color: #5a8f1d;
    text-decoration: underline;
}