/* js_reg.css */
.registration-container {
    width: 100%;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.form-section {
    margin-bottom: 30px;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 5px;
    border-left: 4px solid #4A2488;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid #eaeaea;    
    position: relative;
}

.form-section-header {
    background-color: #4A2488;
    color: white;
    padding: 12px 20px;
    border-radius: 5px 5px 0 0;
    margin: 0 -20px 20px -20px;
    display: flex;
    align-items: center;
}

.form-section-header i {
    margin-right: 10px;
    font-size: 1.2em;
}

.form-section-header h4 {
    margin: 0;
    color: #fff;
    font-weight: 600;
    font-size: 1.1em;
}

.form-group label {
    font-weight: 500;
    color: #555;
}

.required-field::after {
    content: " *";
    color: red;
}

.btn-submit {
    background: linear-gradient(135deg, #4A2488 0%, #731fe0 100%);
    border: none;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.btn-submit:hover {
    background: linear-gradient(135deg, #731fe0 0%, #4A2488 100%);
    transform: translateY(-2px);
}

.form-control {
    height: 45px;
    border-radius: 4px;
    border: 1px solid #ddd;
}

.form-control:focus {
    border-color: #4A2488;
    box-shadow: 0 0 0 0.2rem rgba(46, 107, 220, 0.25);
}

/* Initially hide international fields */
.international-field,
.international-details {
    display: none;

}

/* Updated styles for consistent heights */
.form-control,
.form-select {
    height: 48px;
    padding: 10px 15px;
    line-height: 1.5;
}

/* Enhanced upload section */
.file-upload-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.file-upload-box {
    flex: 1;
    min-width: 250px;
    border: 2px dashed #ddd;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);

}

.file-upload-box:hover {
    border-color: #4c1864;
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Progress bar for uploads */
.upload-progress {
    height: 4px;
    background: #e0e0e0;
    margin-top: 10px;
    border-radius: 2px;
    overflow: hidden;
    display: none;
}

.upload-progress-bar {
    height: 100%;
    background: #2ecc71;
    width: 0%;
    transition: width 0.3s ease;
}

.file-upload-box i {
    font-size: 40px;
    color: #4c1864;
    margin-bottom: 10px;
}

.file-upload-box .file-info {
    margin-top: 10px;
    font-size: 14px;
    color: #666;
}

/* Improved international fields */
.international-section {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 5px;
    margin: 15px 0;
    margin-bottom: 20px;
    border-left: 3px solid #4c1864;
}
