/* Prompt Engineering Training Registration Form Styles */
* { box-sizing: border-box; }

.prompt-registration-wrapper {
    background: linear-gradient(135deg, #000927 0%, #0f1c44 100%);
    min-height: 100vh;
    padding: 60px 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.prompt-form-container {
    max-width: 1100px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 30px;
    box-shadow: 0 40px 100px rgba(255, 119, 0, 0.25);
    overflow: hidden;
    animation: containerSlide 0.7s ease;
}

@keyframes containerSlide {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

.prompt-form-header {
    background: linear-gradient(135deg, #ff7700 0%, #f94c10 100%);
    padding: 50px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.prompt-form-header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 60%);
    animation: headerGlow 5s ease-in-out infinite;
}

@keyframes headerGlow {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.3); opacity: 0.8; }
}

.prompt-header-icon {
    font-size: 80px;
    color: #fff;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
    animation: iconPulse 2s ease infinite;
}

@keyframes iconPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.prompt-form-header h1 {
    font-size: 2.8rem;
    font-weight: 900;
    color: #fff;
    margin: 0 0 10px 0;
    position: relative;
    z-index: 2;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.prompt-form-header .subtitle {
    font-size: 1.3rem;
    color: rgba(255,255,255,0.95);
    margin: 0 0 5px 0;
    position: relative;
    z-index: 2;
}

.prompt-form-header .amharic-subtitle {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.85);
    position: relative;
    z-index: 2;
}

.prompt-training-info {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 25px;
    position: relative;
    z-index: 2;
}

.prompt-info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.15);
    padding: 12px 25px;
    border-radius: 50px;
    backdrop-filter: blur(10px);
}

.prompt-info-item i {
    font-size: 20px;
}

.prompt-info-item span {
    font-weight: 700;
    font-size: 16px;
}

/* Tabs */
.prompt-tabs {
    display: flex;
    background: #f8f9fa;
    border-bottom: 3px solid #e1e5e9;
}

.prompt-tab {
    flex: 1;
    padding: 22px;
    text-align: center;
    background: transparent;
    border: none;
    font-size: 18px;
    font-weight: 700;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.prompt-tab::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #ff7700, #f94c10);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.prompt-tab:hover {
    background: rgba(255, 119, 0, 0.08);
    color: #ff7700;
}

.prompt-tab.active {
    background: linear-gradient(135deg, #ff7700, #f94c10);
    color: #fff;
}

.prompt-tab.active::after {
    transform: scaleX(1);
}

.prompt-tab i {
    margin-right: 10px;
    font-size: 20px;
}

/* Tab Content */
.prompt-tab-content {
    display: none;
    padding: 50px;
    animation: contentFade 0.5s ease;
}

.prompt-tab-content.active {
    display: block;
}

@keyframes contentFade {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Progress Bar */
.prompt-progress-container {
    margin-bottom: 35px;
}

.prompt-progress-steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.prompt-step {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #999;
    font-size: 14px;
    font-weight: 600;
}

.prompt-step.active {
    color: #ff7700;
}

.prompt-step.completed {
    color: #00d084;
}

.prompt-step-number {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #e1e5e9;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    transition: all 0.3s ease;
}

.prompt-step.active .prompt-step-number {
    background: linear-gradient(135deg, #ff7700, #f94c10);
    color: white;
}

.prompt-step.completed .prompt-step-number {
    background: #00d084;
    color: white;
}

.prompt-progress-bar {
    width: 100%;
    height: 8px;
    background: #e1e5e9;
    border-radius: 4px;
    overflow: hidden;
}

.prompt-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #ff7700, #f94c10, #ff7700);
    background-size: 200% 100%;
    width: 0%;
    transition: width 0.4s ease;
    border-radius: 4px;
    animation: progressShine 2s linear infinite;
}

@keyframes progressShine {
    0% { background-position: 100% 0; }
    100% { background-position: -100% 0; }
}

/* Form Layout */
.prompt-form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 30px;
}

.prompt-form-group {
    position: relative;
}

.prompt-form-group.full-width {
    grid-column: 1 / -1;
}

/* Labels */
.prompt-form-label {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 10px;
    font-weight: 700;
    color: #0f1c44;
    font-size: 15px;
    gap: 5px;
}

.prompt-form-label i {
    color: #ff7700;
    font-size: 17px;
}

.prompt-form-label .required {
    color: #f94c10;
    font-size: 18px;
}

.prompt-form-label .amharic {
    color: #666;
    font-weight: 500;
    font-size: 13px;
}

/* Input Wrapper */
.prompt-input-wrapper {
    position: relative;
}

.prompt-input-icon {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #ff7700;
    font-size: 18px;
    z-index: 1;
    transition: all 0.3s ease;
}

/* Inputs */
.prompt-form-input {
    width: 100%;
    padding: 16px 16px 16px 52px;
    border: 2px solid #e1e5e9;
    border-radius: 14px;
    font-size: 15px;
    transition: all 0.3s ease;
    background: #fff;
    font-family: inherit;
}

.prompt-form-input:focus {
    outline: none;
    border-color: #ff7700;
    box-shadow: 0 0 0 4px rgba(255, 119, 0, 0.1);
}

.prompt-form-input.error {
    border-color: #f94c10;
    background: rgba(249, 76, 16, 0.03);
    animation: inputShake 0.5s ease;
}

@keyframes inputShake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-8px); }
    75% { transform: translateX(8px); }
}

/* Error Messages */
.prompt-error-message {
    color: #f94c10;
    font-size: 13px;
    margin-top: 8px;
    display: none;
    font-weight: 600;
    padding-left: 5px;
}

.prompt-error-message.show {
    display: flex;
    align-items: center;
    gap: 5px;
    animation: errorSlide 0.3s ease;
}

.prompt-error-message::before {
    content: '⚠';
}

@keyframes errorSlide {
    from { opacity: 0; transform: translateX(-10px); }
    to { opacity: 1; transform: translateX(0); }
}

/* Training Purpose Categories */
.prompt-purpose-section {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 30px;
    border-radius: 20px;
    border: 2px solid #e1e5e9;
    margin-bottom: 30px;
}

.prompt-purpose-header {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #ddd;
}

.prompt-purpose-header i {
    font-size: 28px;
    color: #ff7700;
    margin-right: 15px;
}

.prompt-purpose-header h3 {
    font-size: 20px;
    color: #0f1c44;
    font-weight: 800;
    margin: 0;
}

.prompt-purpose-header .amharic {
    color: #666;
    font-size: 14px;
    font-weight: 500;
    margin-left: 10px;
}

.prompt-category-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 25px;
}

.prompt-category-tab {
    padding: 10px 20px;
    background: white;
    border: 2px solid #e1e5e9;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
}

.prompt-category-tab:hover {
    border-color: #ff7700;
    color: #ff7700;
}

.prompt-category-tab.active {
    background: linear-gradient(135deg, #ff7700, #f94c10);
    border-color: transparent;
    color: white;
}

.prompt-purpose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 12px;
}

.prompt-purpose-item {
    background: white;
    padding: 14px 18px;
    border-radius: 12px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.prompt-purpose-item:hover {
    border-color: #ff7700;
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(255, 119, 0, 0.15);
}

.prompt-purpose-item.selected {
    background: linear-gradient(135deg, #fff3e6, #ffe6cc);
    border-color: #ff7700;
    box-shadow: 0 5px 20px rgba(255, 119, 0, 0.2);
}

.prompt-purpose-checkbox {
    width: 22px;
    height: 22px;
    margin-right: 12px;
    cursor: pointer;
    accent-color: #ff7700;
}

.prompt-purpose-icon {
    font-size: 20px;
    color: #ff7700;
    margin-right: 12px;
    width: 24px;
    text-align: center;
}

.prompt-purpose-label {
    flex: 1;
    cursor: pointer;
}

.prompt-purpose-name {
    font-size: 14px;
    font-weight: 600;
    color: #0f1c44;
    display: block;
}

.prompt-purpose-name-am {
    font-size: 12px;
    color: #666;
    display: block;
    margin-top: 2px;
}

/* File Upload */
.prompt-file-upload {
    position: relative;
    padding: 35px;
    border: 3px dashed #e1e5e9;
    border-radius: 18px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
}

.prompt-file-upload:hover {
    border-color: #ff7700;
    background: linear-gradient(135deg, #fff3e6, #ffffff);
}

.prompt-file-upload input {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
    top: 0;
    left: 0;
}

.prompt-file-upload i {
    font-size: 45px;
    color: #ff7700;
    display: block;
    margin-bottom: 12px;
    animation: uploadBounce 2s ease-in-out infinite;
}

@keyframes uploadBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.prompt-file-text {
    font-weight: 700;
    color: #0f1c44;
    margin-bottom: 5px;
    font-size: 16px;
}

.prompt-file-hint {
    font-size: 13px;
    color: #666;
}

.prompt-file-upload.uploaded {
    border-color: #00d084;
    background: linear-gradient(135deg, #e6f9f2, #ffffff);
}

.prompt-file-upload.uploaded i {
    color: #00d084;
    animation: checkBounce 0.5s ease;
}

@keyframes checkBounce {
    0% { transform: scale(0); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

/* Submit Button */
.prompt-submit-btn {
    width: 100%;
    padding: 20px;
    background: linear-gradient(135deg, #ff7700, #f94c10);
    color: #fff;
    border: none;
    border-radius: 14px;
    font-size: 18px;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(255, 119, 0, 0.3);
}

.prompt-submit-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.prompt-submit-btn:hover::before {
    width: 400px;
    height: 400px;
}

.prompt-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 119, 0, 0.4);
}

.prompt-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.prompt-submit-btn i, .prompt-submit-btn span {
    position: relative;
    z-index: 1;
}

.prompt-loading {
    display: none;
}

.prompt-submit-btn.loading .prompt-loading {
    display: inline-block;
    animation: spin 1s linear infinite;
}

.prompt-submit-btn.loading .btn-text {
    display: none;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Toast */
.prompt-toast {
    position: fixed;
    top: 30px;
    right: 30px;
    min-width: 320px;
    padding: 18px 22px;
    border-radius: 14px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    z-index: 999999;
    display: none;
    animation: toastSlide 0.4s ease;
}

@keyframes toastSlide {
    from { transform: translateX(400px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

.prompt-toast.show {
    display: flex;
    align-items: center;
}

.prompt-toast.success {
    background: linear-gradient(135deg, #00d084, #00a86b);
    color: white;
}

.prompt-toast.error {
    background: linear-gradient(135deg, #f94c10, #d63a09);
    color: white;
}

.prompt-toast i {
    font-size: 26px;
    margin-right: 15px;
}

.prompt-toast-title {
    font-weight: 800;
    font-size: 16px;
    margin-bottom: 3px;
}

.prompt-toast-message {
    font-size: 14px;
    opacity: 0.95;
}

/* Modals */
.prompt-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 999999;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(12px);
    padding: 20px;
    overflow-y: auto;
}

.prompt-modal.show {
    display: flex;
}

.prompt-modal-content {
    background: white;
    border-radius: 25px;
    padding: 40px 35px;
    max-width: 600px;
    width: 95%;
    max-height: 90vh;
    overflow-y: auto;
    text-align: center;
    box-shadow: 0 30px 80px rgba(255, 119, 0, 0.3);
    animation: modalPop 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes modalPop {
    from { transform: scale(0.7); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.prompt-modal-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #ff7700, #f94c10);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    font-size: 50px;
    box-shadow: 0 15px 40px rgba(255, 119, 0, 0.4);
    animation: iconRotate 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes iconRotate {
    0% { transform: scale(0) rotate(-180deg); }
    100% { transform: scale(1) rotate(0deg); }
}

.prompt-modal h2 {
    font-size: 28px;
    color: #0f1c44;
    margin-bottom: 12px;
    font-weight: 900;
}

.prompt-modal p {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 25px;
}

.prompt-student-id-box {
    background: linear-gradient(135deg, #fff3e6, #ffe6cc);
    padding: 22px;
    border-radius: 14px;
    margin: 25px 0;
    border-left: 5px solid #ff7700;
}

.prompt-student-id-label {
    font-size: 13px;
    color: #666;
    font-weight: 600;
    margin-bottom: 6px;
}

.prompt-student-id {
    font-family: 'Courier New', monospace;
    font-weight: 900;
    font-size: 26px;
    color: #ff7700;
    letter-spacing: 2px;
}

.prompt-modal-btn {
    background: linear-gradient(135deg, #ff7700, #f94c10);
    color: white;
    border: none;
    padding: 16px 45px;
    border-radius: 12px;
    font-weight: 800;
    font-size: 17px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 119, 0, 0.3);
    margin: 8px;
}

.prompt-modal-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 119, 0, 0.5);
}

.prompt-modal-btn.secondary {
    background: linear-gradient(135deg, #0f1c44, #000927);
}

/* Payment Section */
.prompt-payment-section {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 30px;
    border-radius: 18px;
    margin-top: 25px;
    border: 2px solid #e1e5e9;
}

.prompt-payment-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #ddd;
}

.prompt-payment-header i {
    font-size: 28px;
    color: #00d084;
    margin-right: 12px;
}

.prompt-payment-header h3 {
    font-size: 20px;
    color: #0f1c44;
    font-weight: 800;
}

.prompt-bank-info {
    background: white;
    padding: 22px;
    border-radius: 14px;
    margin-bottom: 20px;
    border-left: 5px solid #00d084;
}

.prompt-bank-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.prompt-bank-item:last-child {
    border-bottom: none;
}

.prompt-bank-label {
    font-weight: 700;
    color: #0f1c44;
}

.prompt-bank-value {
    color: #666;
    font-weight: 600;
    font-family: monospace;
}

.prompt-fee-box {
    background: linear-gradient(135deg, #fff3e6, #ffe6cc);
    padding: 20px;
    border-radius: 14px;
    text-align: center;
    margin-bottom: 25px;
    border: 2px solid #ff7700;
}

.prompt-fee-label {
    font-size: 14px;
    color: #666;
    margin-bottom: 5px;
}

.prompt-fee-amount {
    font-size: 32px;
    font-weight: 900;
    color: #ff7700;
}

.prompt-fee-currency {
    font-size: 18px;
    color: #666;
}

/* Responsive */
@media (max-width: 768px) {
    .prompt-registration-wrapper { padding: 30px 15px; }
    .prompt-form-header { padding: 35px 20px; }
    .prompt-form-header h1 { font-size: 1.8rem; }
    .prompt-header-icon { font-size: 55px; }
    .prompt-training-info { flex-direction: column; gap: 15px; }
    .prompt-tab-content { padding: 30px 20px; }
    .prompt-form-grid { grid-template-columns: 1fr; }
    .prompt-purpose-grid { grid-template-columns: 1fr; }
    .prompt-category-tabs { justify-content: center; }
    .prompt-toast { right: 15px; left: 15px; min-width: auto; }
    .prompt-modal-content { padding: 30px 20px; }
    .prompt-modal-icon { width: 80px; height: 80px; font-size: 40px; }
    .prompt-modal h2 { font-size: 22px; }
    .prompt-student-id { font-size: 20px; }
}

@media (max-width: 480px) {
    .prompt-form-header h1 { font-size: 1.5rem; }
    .prompt-form-input { padding: 14px 14px 14px 48px; }
    .prompt-purpose-item { padding: 12px 14px; }
}

