.curriculum-form-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 30px;
    background: linear-gradient(135deg, #EA634D 0%, #D94A33 100%);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(234, 99, 77, 0.3);
}

.curriculum-form-container form {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group label:after {
    content: "*";
    color: #EA634D;
    margin-left: 4px;
}

.form-group input[type="text"] {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input[type="text"]:focus {
    outline: none;
    border-color: #EA634D;
    box-shadow: 0 0 0 3px rgba(234, 99, 77, 0.1);
}

/* File input styling */
.file-input-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
}

.file-input-wrapper input[type="file"] {
    position: absolute;
    opacity: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    z-index: 2;
}

.file-input-label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 15px;
    background: #f8f9fa;
    border: 2px dashed #EA634D;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.file-input-label:hover {
    background: #fff5f3;
    border-color: #D94A33;
}

.file-input-text {
    color: #666;
    font-size: 14px;
}

.file-input-button {
    background: linear-gradient(135deg, #EA634D 0%, #D94A33 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.file-input-wrapper:hover .file-input-button {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(234, 99, 77, 0.3);
}

.file-selected .file-input-text {
    color: #28a745;
    font-weight: 500;
}

.file-selected .file-input-button {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
}

.form-group small {
    display: block;
    margin-top: 8px;
    color: #888;
    font-size: 12px;
}

.submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #EA634D 0%, #D94A33 100%);
    color: white;
    border: none;
    padding: 14px 30px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    margin-top: 10px;
    position: relative;
    overflow: hidden;
}

.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;
}

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

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(234, 99, 77, 0.4);
}

.submit-btn:active {
    transform: translateY(0);
}

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

#form-message {
    margin-top: 20px;
    padding: 12px;
    border-radius: 8px;
    display: none;
    animation: slideIn 0.3s ease;
}

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

#form-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    display: block;
}

#form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: block;
}

.curriculum-form-container h3 {
    color: white;
    text-align: center;
    margin-bottom: 20px;
    font-size: 24px;
    font-weight: 600;
}

@media (max-width: 768px) {
    .curriculum-form-container {
        padding: 15px;
    }
    
    .curriculum-form-container form {
        padding: 25px;
    }
    
    .file-input-label {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .file-input-button {
        width: 100%;
        text-align: center;
    }
    
    .submit-btn {
        font-size: 14px;
        padding: 12px 20px;
    }
}